コード例 #1
0
 public static Task EnableMuteAllModeAsync(this AudioVideoMcuSession self, EnableMuteAllModeOptions options)
 {
     return Task.Factory.FromAsync<EnableMuteAllModeOptions>(
         self.BeginEnableMuteAllMode,
         self.EndEnableMuteAllMode,
         options,
         null);
 }
コード例 #2
0
 public static Task EnableMuteAllModeAsync(this AudioVideoMcuSession mcuSession,
                                           EnableMuteAllModeOptions options)
 {
     return(Task.Factory.FromAsync(mcuSession.BeginEnableMuteAllMode,
                                   mcuSession.EndEnableMuteAllMode, options, null));
 }