Gets the audio channels.

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

Syntax

Visual Basic (Declaration)
Public 
Function 
GetChannels 
As 
IDictionary(
Of 

ChannelLabel, 

AudioChannel)
C#
public 
IDictionary<

ChannelLabel, 

AudioChannel> 
GetChannels()
Visual C++
public:
IDictionary<

ChannelLabel, 

AudioChannel^>^ 
GetChannels()
JavaScript
function 
getChannels();

Return Value

Dictionary with with an AudioChannel indexed by its ChannelLabel

Remarks

Returns a read-only dictionary of the channels held by AudioControl. Modification at the Dictionary will not have an effect, as the returned object is a copy of the original one.

See Also