Initializes an instance of SipUriParser.

Namespace:  Microsoft.Rtc.Signaling
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

Syntax

Visual Basic (Declaration)
Public 
Sub 
New ( _
	
scheme 
As 
String, _
	
value 
As 
String _
)
C#
public 
SipUriParser(
	
string 
scheme,
	
string 
value
)
Visual C++
public:
SipUriParser(
	
String^ 
scheme, 
	
String^ 
value
)
JavaScript

Microsoft.Rtc.Signaling.SipUriParser = 
function(
scheme, 
value);

Parameters

scheme
Type: String
The URI scheme string.
value
Type: String
The whole URI string excluding '<scheme>:'

Exceptions

Exception Condition
ArgumentException Thrown if scheme or value is not a valid string to form SipUri.

See Also