Show / Hide Table of Contents

Interface IOnlineMeetingRequest

The interface IOnlineMeetingRequest.

Inherited Members
IBaseRequest.Client
IBaseRequest.RequestUrl
IBaseRequest.Headers
IBaseRequest.QueryOptions
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IOnlineMeetingRequest : IBaseRequest

Methods

View Source

CreateAsync(OnlineMeeting)

Creates the specified OnlineMeeting using PUT.

Declaration
Task<OnlineMeeting> CreateAsync(OnlineMeeting onlineMeetingToCreate)
Parameters
Type Name Description
OnlineMeeting onlineMeetingToCreate

The OnlineMeeting to create.

Returns
Type Description
System.Threading.Tasks.Task<OnlineMeeting>

The created OnlineMeeting.

View Source

CreateAsync(OnlineMeeting, CancellationToken)

Creates the specified OnlineMeeting using PUT.

Declaration
Task<OnlineMeeting> CreateAsync(OnlineMeeting onlineMeetingToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
OnlineMeeting onlineMeetingToCreate

The OnlineMeeting to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task<OnlineMeeting>

The created OnlineMeeting.

View Source

DeleteAsync()

Deletes the specified OnlineMeeting.

Declaration
Task DeleteAsync()
Returns
Type Description
System.Threading.Tasks.Task

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified OnlineMeeting.

Declaration
Task DeleteAsync(CancellationToken cancellationToken)
Parameters
Type Name Description
System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task

The task to await.

View Source

Expand(Expression<Func<OnlineMeeting, Object>>)

Adds the specified expand value to the request.

Declaration
IOnlineMeetingRequest Expand(Expression<Func<OnlineMeeting, object>> expandExpression)
Parameters
Type Name Description
System.Linq.Expressions.Expression<System.Func<OnlineMeeting, System.Object>> expandExpression

The expression from which to calculate the expand value.

Returns
Type Description
IOnlineMeetingRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

Declaration
IOnlineMeetingRequest Expand(string value)
Parameters
Type Name Description
System.String value

The expand value.

Returns
Type Description
IOnlineMeetingRequest

The request object to send.

View Source

GetAsync()

Gets the specified OnlineMeeting.

Declaration
Task<OnlineMeeting> GetAsync()
Returns
Type Description
System.Threading.Tasks.Task<OnlineMeeting>

The OnlineMeeting.

View Source

GetAsync(CancellationToken)

Gets the specified OnlineMeeting.

Declaration
Task<OnlineMeeting> GetAsync(CancellationToken cancellationToken)
Parameters
Type Name Description
System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task<OnlineMeeting>

The OnlineMeeting.

View Source

Select(Expression<Func<OnlineMeeting, Object>>)

Adds the specified select value to the request.

Declaration
IOnlineMeetingRequest Select(Expression<Func<OnlineMeeting, object>> selectExpression)
Parameters
Type Name Description
System.Linq.Expressions.Expression<System.Func<OnlineMeeting, System.Object>> selectExpression

The expression from which to calculate the select value.

Returns
Type Description
IOnlineMeetingRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

Declaration
IOnlineMeetingRequest Select(string value)
Parameters
Type Name Description
System.String value

The select value.

Returns
Type Description
IOnlineMeetingRequest

The request object to send.

View Source

UpdateAsync(OnlineMeeting)

Updates the specified OnlineMeeting using PATCH.

Declaration
Task<OnlineMeeting> UpdateAsync(OnlineMeeting onlineMeetingToUpdate)
Parameters
Type Name Description
OnlineMeeting onlineMeetingToUpdate

The OnlineMeeting to update.

Returns
Type Description
System.Threading.Tasks.Task<OnlineMeeting>

The updated OnlineMeeting.

View Source

UpdateAsync(OnlineMeeting, CancellationToken)

Updates the specified OnlineMeeting using PATCH.

Declaration
Task<OnlineMeeting> UpdateAsync(OnlineMeeting onlineMeetingToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
OnlineMeeting onlineMeetingToUpdate

The OnlineMeeting to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

Returns
Type Description
System.Threading.Tasks.Task<OnlineMeeting>

The updated OnlineMeeting.

  • View Source
Back to top Generated by DocFX