Share via


UriPathParser.ParsePathIntoSegments(Uri, Uri) Method

Definition

Returns list of segments in the specified path (eg: /abc/pqr -> abc, pqr).

public virtual System.Collections.Generic.ICollection<string> ParsePathIntoSegments (Uri fullUri, Uri serviceBaseUri);
abstract member ParsePathIntoSegments : Uri * Uri -> System.Collections.Generic.ICollection<string>
override this.ParsePathIntoSegments : Uri * Uri -> System.Collections.Generic.ICollection<string>
Public Overridable Function ParsePathIntoSegments (fullUri As Uri, serviceBaseUri As Uri) As ICollection(Of String)

Parameters

fullUri
Uri

The full URI of the request.

serviceBaseUri
Uri

The service base URI for the request.

Returns

List of unescaped segments.

Applies to