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