Interface ILocalMediaSession
Inherited Members
Namespace: Microsoft.Graph.Communications.Calls.Media
Assembly: Microsoft.Graph.Communications.Calls.Media.dll
Syntax
public interface ILocalMediaSession : IMediaSession, IDisposable
Properties
AudioSocket
Gets the audio socket associated with this media session.
Declaration
IAudioSocket AudioSocket { get; }
Property Value
Type | Description |
---|---|
IAudioSocket |
DataSocket
Gets the data socket associated with this media session.
Declaration
IDataSocket DataSocket { get; }
Property Value
Type | Description |
---|---|
IDataSocket |
VbssSocket
Gets the VBSS socket associated with this media session.
Declaration
IVideoSocket VbssSocket { get; }
Property Value
Type | Description |
---|---|
IVideoSocket |
VideoSocket
Gets the video socket associated with this media session. If current media session contains multiple sockets, this will return the first one in the list.
Declaration
IVideoSocket VideoSocket { get; }
Property Value
Type | Description |
---|---|
IVideoSocket |
VideoSockets
Gets the list of video socket associated with this media session.
Declaration
IReadOnlyList<IVideoSocket> VideoSockets { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<IVideoSocket> |