RealTimeEndpoint.AddFeatureParameter Method
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
AddFeatureParameter(String) |
Adds a feature parameter. See rfc 3840. |
AddFeatureParameter(String, String) |
Adds a feature parameter. See rfc 3840. |
AddFeatureParameter(String)
Adds a feature parameter. See rfc 3840.
public:
void AddFeatureParameter(System::String ^ name);
public void AddFeatureParameter (string name);
member this.AddFeatureParameter : string -> unit
Public Sub AddFeatureParameter (name As String)
Parameters
- name
- String
The name of the parameter.
Exceptions
Thrown if name is null.
Thrown if the name is empty or already exists in collection.
Thrown if the value passed is not a valid header parameter.
Applies to
AddFeatureParameter(String, String)
Adds a feature parameter. See rfc 3840.
public:
void AddFeatureParameter(System::String ^ name, System::String ^ value);
public void AddFeatureParameter (string name, string value);
member this.AddFeatureParameter : string * string -> unit
Public Sub AddFeatureParameter (name As String, value As String)
Parameters
- name
- String
The name of the parameter.
- value
- String
The value.
Exceptions
Thrown if name is null.
Thrown if the name is empty or already exists in collection.
Thrown if the name/value pair is not a valid header parameter.