class UriParser

in global :: System

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.

  • schemeName The 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 .

  • uriParser The URI parser to register.
  • schemeName The name of the scheme that is associated with this parser.
  • defaultPort The 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.