UriPathParser.ParsePathIntoSegments(Uri, Uri) 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.
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.