Edit

Share via


ConferenceServices.BeginCancelConference Method

Definition

Overloads

BeginCancelConference(String, AsyncCallback, Object)

Deletes a conference scheduled by the endpoint owner.

BeginCancelConference(String, SchedulingTemplate, AsyncCallback, Object)

Deletes a conference scheduled by the endpoint owner.

BeginCancelConference(String, AsyncCallback, Object)

Deletes a conference scheduled by the endpoint owner.

public:
 IAsyncResult ^ BeginCancelConference(System::String ^ conferenceId, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginCancelConference (string conferenceId, AsyncCallback userCallback, object state);
member this.BeginCancelConference : string * AsyncCallback * obj -> IAsyncResult
Public Function BeginCancelConference (conferenceId As String, userCallback As AsyncCallback, state As Object) As IAsyncResult

Parameters

conferenceId
String

The ID of the conference to delete.

userCallback
AsyncCallback

The method to be called when the asynchronous operation is completed.

state
Object

A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.

Returns

An IAsyncResult that references the asynchronous operation.

Exceptions

Thrown when the method failed to issue the request.

Thrown when the conference ID is not specified or invalid.

Remarks

This operation is allowed by the server for existing conferences scheduled by the endpoint owner only.

This operation will only delete conferences that were scheduled with settings coming from the organizer.OrganizerSupplied.

Applies to

BeginCancelConference(String, SchedulingTemplate, AsyncCallback, Object)

Deletes a conference scheduled by the endpoint owner.

public:
 IAsyncResult ^ BeginCancelConference(System::String ^ conferenceId, Microsoft::Rtc::Collaboration::SchedulingTemplate schedulingTemplate, AsyncCallback ^ userCallback, System::Object ^ state);
public IAsyncResult BeginCancelConference (string conferenceId, Microsoft.Rtc.Collaboration.SchedulingTemplate schedulingTemplate, AsyncCallback userCallback, object state);
member this.BeginCancelConference : string * Microsoft.Rtc.Collaboration.SchedulingTemplate * AsyncCallback * obj -> IAsyncResult

Parameters

conferenceId
String

The ID of the conference to delete.

schedulingTemplate
SchedulingTemplate

The template used in scheduling the conference.

userCallback
AsyncCallback

The method to be called when the asynchronous operation is completed.

state
Object

A user-provided object that distinguishes this particular asynchronous operation from other asynchronous operations.

Returns

An IAsyncResult that references the asynchronous operation.

Exceptions

Thrown when the method failed to issue the request.

Thrown when the conference ID is not specified or invalid.

Remarks

This operation is allowed by the server for existing conferences scheduled by the endpoint owner only.

In order to delete a conference scheduled based on an administrator template, schedulingTemplate should be set to AdministratorSupplied. Note that most UCMA applications should not cancel such conferences as this is an advanced scenario.

Applies to