Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UriParser::Register Method (UriParser^, String^, Int32)

 

Associates a scheme and port number with a UriParser.

Namespace:   System
Assembly:  System (in System.dll)

public:
static void Register(
	UriParser^ uriParser,
	String^ schemeName,
	int defaultPort
)

Parameters

uriParser
Type: System::UriParser^

The URI parser to register.

schemeName
Type: System::String^

The name of the scheme that is associated with this parser.

defaultPort
Type: System::Int32

The default port number for the specified scheme.

Exception Condition
ArgumentNullException

uriParser parameter is null

- or -

schemeName parameter is null.

ArgumentOutOfRangeException

schemeName parameter is not valid

- or -

defaultPort parameter is not valid. The defaultPort parameter is less than -1 or greater than 65,534.

If the defaultPort parameter is set to -1, the Register method registers no default value for the port number.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft