AnyUri.Path PropertyAnyUri.Path PropertyAnyUri::Path Property

Gets the path specified in the URI.

Syntax

Public ReadOnly Property Path As String
        Get
public string Path { get; }
public:
property String^ Path {
    String^ get();
}
 

Property Value

Type: System.StringSystem.StringSystem::String^

A stringStringString containing the path specified in this URI, or null a null reference (Nothing in Visual Basic) nullptr if the URI does not specify a path.

Remarks

The path may contain percent-encoded characters. In order to retrieve the path without percent-encoded parameters then either use the GetComponentsGetComponentsGetComponents or UnescapeDataStringUnescapeDataStringUnescapeDataString methods.