UrlShortenerClientResolveAsync(String) Method
Asynchronously resolves a shortened Url.
Namespace: DevCase.ThirdParty.Google.UrlShortenerAssembly: DevCase.net48.ThirdParty.GoogleServices (in DevCase.net48.ThirdParty.GoogleServices.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public Task<string> ResolveAsync(
string url
)
Public Function ResolveAsync (
url As String
) As Task(Of String)
Dim instance As UrlShortenerClient
Dim url As String
Dim returnValue As Task(Of String)
returnValue = instance.ResolveAsync(url)
public:
Task<String^>^ ResolveAsync(
String^ url
)
member ResolveAsync :
url : string -> Task<string>
No code example is currently available or this language may not be supported.
- url String
-
The shortened Url to resolve.
TaskString
The resulting
TaskTResult containing the resolved Url.
This is a code example.
No code example is currently available or this language may not be supported.
Dim client As New UrlShortenerClient("YOUR API KEY")
Dim authSuccess As Boolean = Await client.AuthorizeAsync()
Dim shortenedUrl As String = "http://goo.gl/Pfn8S"
Dim resolvedUrl As String = Await client.ResolveAsync(shortenedUrl)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.