ConnectorClientBase.ResolveUrl(String) Method

Definition

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.

Applies to