Interface IOnlineMeetingRequest
The interface IOnlineMeetingRequest.
Inherited Members
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IOnlineMeetingRequest : IBaseRequest
Methods
View SourceCreateAsync(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. |
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. |
DeleteAsync()
Deletes the specified OnlineMeeting.
Declaration
Task DeleteAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | The task to await. |
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. |
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. |
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. |
GetAsync()
Gets the specified OnlineMeeting.
Declaration
Task<OnlineMeeting> GetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<OnlineMeeting> | The OnlineMeeting. |
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. |
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. |
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. |
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. |
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. |