Show / Hide Table of Contents

Interface ISubscribeVideoOperationRequest

The interface ISubscribeVideoOperationRequest.

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

Methods

View Source

CreateAsync(SubscribeVideoOperation)

Creates the specified SubscribeVideoOperation using PUT.

Declaration
Task<SubscribeVideoOperation> CreateAsync(SubscribeVideoOperation subscribeVideoOperationToCreate)
Parameters
Type Name Description
SubscribeVideoOperation subscribeVideoOperationToCreate

The SubscribeVideoOperation to create.

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

The created SubscribeVideoOperation.

View Source

CreateAsync(SubscribeVideoOperation, CancellationToken)

Creates the specified SubscribeVideoOperation using PUT.

Declaration
Task<SubscribeVideoOperation> CreateAsync(SubscribeVideoOperation subscribeVideoOperationToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
SubscribeVideoOperation subscribeVideoOperationToCreate

The SubscribeVideoOperation to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created SubscribeVideoOperation.

View Source

DeleteAsync()

Deletes the specified SubscribeVideoOperation.

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

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified SubscribeVideoOperation.

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<SubscribeVideoOperation, Object>>)

Adds the specified expand value to the request.

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

The expression from which to calculate the expand value.

Returns
Type Description
ISubscribeVideoOperationRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
ISubscribeVideoOperationRequest

The request object to send.

View Source

GetAsync()

Gets the specified SubscribeVideoOperation.

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

The SubscribeVideoOperation.

View Source

GetAsync(CancellationToken)

Gets the specified SubscribeVideoOperation.

Declaration
Task<SubscribeVideoOperation> 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<SubscribeVideoOperation>

The SubscribeVideoOperation.

View Source

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

Adds the specified select value to the request.

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

The expression from which to calculate the select value.

Returns
Type Description
ISubscribeVideoOperationRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
ISubscribeVideoOperationRequest

The request object to send.

View Source

UpdateAsync(SubscribeVideoOperation)

Updates the specified SubscribeVideoOperation using PATCH.

Declaration
Task<SubscribeVideoOperation> UpdateAsync(SubscribeVideoOperation subscribeVideoOperationToUpdate)
Parameters
Type Name Description
SubscribeVideoOperation subscribeVideoOperationToUpdate

The SubscribeVideoOperation to update.

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

The updated SubscribeVideoOperation.

View Source

UpdateAsync(SubscribeVideoOperation, CancellationToken)

Updates the specified SubscribeVideoOperation using PATCH.

Declaration
Task<SubscribeVideoOperation> UpdateAsync(SubscribeVideoOperation subscribeVideoOperationToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
SubscribeVideoOperation subscribeVideoOperationToUpdate

The SubscribeVideoOperation to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The updated SubscribeVideoOperation.

  • View Source
Back to top Generated by DocFX