ConnectorClientBase.ResolveUrl(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Resolves a relative path or validates an absolute URL against the connection runtime URL. When the NextLink host matches the connection URL, it's used as-is. When it doesn't match (codeless connectors like ARM return nextLink pointing to the backend host e.g. management.azure.com), the path+query is extracted and routed through the APIM proxy. This is safe because the request still goes through the connection runtime URL with API Hub auth.
protected string ResolveUrl(string path);
member this.ResolveUrl : string -> string
Protected Function ResolveUrl (path As String) As String
Parameters
- path
- String
The relative path or absolute URL to resolve.
Returns
The resolved absolute URL.