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