Initializes an instance of the class with name and value of the attribute.

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

Syntax

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

Microsoft.Rtc.Signaling.SdpAttribute = 
function(
name, 
value);

Parameters

name
Type: String
The name of the attribute (cannot be null or Empty).
value
Type: String
The value of the attribute (null indicates no value).

See Also