Class MediaStreamIdentifierAttribute
https://datatracker.ietf.org/doc/html/rfc8830#sect-media-stream "Media stream identifier" attribute, which can be used to signal the relationship between a group of MediaStreams and a set of media descriptions Its formatting in SDP [RFC8830] is described by the following Augmented Backus-Naur Form(ABNF) [RFC5234]:
msid-value = msid-id [ SP msid-appdata ]
msid-id = 1*64token-char ; see RFC 4566
msid-appdata = 1*64token-char ; see RFC 4566
The identification-tag MUST be unique within an SDP session description.
Inherited Members
Namespace: FM.LiveSwitch.Sdp
Assembly: FM.LiveSwitch.dll
Syntax
public class MediaStreamIdentifierAttribute : Attribute
Constructors
MediaStreamIdentifierAttribute(String)
Initializes a new instance of the MediaStreamIdentifierAttribute class.
Declaration
public MediaStreamIdentifierAttribute(string attributeValue)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | attributeValue | The identifier (and optionally app-data). |
Properties
AppData
Gets or sets the app data (may be null).
Declaration
public string AppData { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Identifier
Gets or sets the identifier.
Declaration
public string Identifier { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Methods
FromAttributeValue(String)
Initializes a new instance of the MediaStreamIdentifierAttribute class.
Declaration
public static MediaStreamIdentifierAttribute FromAttributeValue(string value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | value | The attribute value. |
Returns
| Type | Description |
|---|---|
| MediaStreamIdentifierAttribute |
GetAttributeValue()
Gets the internal value of the attribute.
Declaration
protected override string GetAttributeValue()
Returns
| Type | Description |
|---|---|
| System.String |