SipUriParameter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SipUriParameter(String) |
Initializes an instance of the class. |
SipUriParameter(String, String) |
Initializes an instance of the class. |
SipUriParameter(String)
Initializes an instance of the class.
public:
SipUriParameter(System::String ^ name);
public SipUriParameter (string name);
new Microsoft.Rtc.Signaling.SipUriParameter : string -> Microsoft.Rtc.Signaling.SipUriParameter
Public Sub New (name As String)
Parameters
- name
- String
The name of the parameter.
Applies to
SipUriParameter(String, String)
Initializes an instance of the class.
public:
SipUriParameter(System::String ^ name, System::String ^ value);
public SipUriParameter (string name, string value);
new Microsoft.Rtc.Signaling.SipUriParameter : string * string -> Microsoft.Rtc.Signaling.SipUriParameter
Public Sub New (name As String, value As String)
Parameters
- name
- String
The name of the parameter.
- value
- String
The value for the parameter. Can be null or empty.
Exceptions
Thrown if name is an empty string or value is not a valid string for given URI parameter name.
Thrown if name is passed as null string.