Exemplo n.º 1
0
 public static Task EnableMuteAllModeAsync(this AudioVideoMcuSession mcuSession,
                                           EnableMuteAllModeOptions options)
 {
     return(Task.Factory.FromAsync(mcuSession.BeginEnableMuteAllMode,
                                   mcuSession.EndEnableMuteAllMode, options, null));
 }
Exemplo n.º 2
0
 public static Task DialOutAsync(this AudioVideoMcuSession mcuSession,
                                 string uri)
 {
     return(Task.Factory.FromAsync(mcuSession.BeginDialOut,
                                   mcuSession.EndDialOut, uri, null));
 }
Exemplo n.º 3
0
 public static Task DisableMuteAllModeAsync(this AudioVideoMcuSession mcuSession)
 {
     return(Task.Factory.FromAsync(mcuSession.BeginDisableMuteAllMode,
                                   mcuSession.EndDisableMuteAllMode, null));
 }