Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds a feature parameter. See rfc 3840.
Namespace: Microsoft.Rtc.Signaling
Assembly: Microsoft.Rtc.Collaboration (in Microsoft.Rtc.Collaboration.dll)
Syntax
'Declaration
Public Sub AddFeatureParameter ( _
name As String, _
value As String _
)
'Usage
Dim instance As RealTimeEndpoint
Dim name As String
Dim value As String
instance.AddFeatureParameter(name, value)
public void AddFeatureParameter(
string name,
string value
)
Parameters
- name
Type: System.String
The name of the parameter.
- value
Type: System.String
The value.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | Thrown if name is null. |
| ArgumentException | Thrown if the name is empty or already exists in collection. |
| MessageParsingException | Thrown if the name/value pair is not a valid header parameter. |