class UriParser
Parses a new URI scheme. This is an abstract class.
public static bool IsKnownScheme( string schemeName )
Indicates whether the parser for a scheme is registered.
schemeNameThe scheme name to check.- Returns if has been registered; otherwise, .
public static void Register( UriParser uriParser, string schemeName, int defaultPort )
Associates a scheme and port number with a .
uriParserThe URI parser to register.schemeNameThe name of the scheme that is associated with this parser.defaultPortThe default port number for the specified scheme.
public Type GetType( )
😔 No documentation found.
public string ToString( )
😔 No documentation found.
public bool Equals( object obj )
😔 No documentation found.
public int GetHashCode( )
😔 No documentation found.