Show / Hide Table of Contents

Interface IRecognizeOperationRequest

The interface IRecognizeOperationRequest.

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

Methods

View Source

CreateAsync(RecognizeOperation)

Creates the specified RecognizeOperation using PUT.

Declaration
Task<RecognizeOperation> CreateAsync(RecognizeOperation recognizeOperationToCreate)
Parameters
Type Name Description
RecognizeOperation recognizeOperationToCreate

The RecognizeOperation to create.

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

The created RecognizeOperation.

View Source

CreateAsync(RecognizeOperation, CancellationToken)

Creates the specified RecognizeOperation using PUT.

Declaration
Task<RecognizeOperation> CreateAsync(RecognizeOperation recognizeOperationToCreate, CancellationToken cancellationToken)
Parameters
Type Name Description
RecognizeOperation recognizeOperationToCreate

The RecognizeOperation to create.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The created RecognizeOperation.

View Source

DeleteAsync()

Deletes the specified RecognizeOperation.

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

The task to await.

View Source

DeleteAsync(CancellationToken)

Deletes the specified RecognizeOperation.

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

Adds the specified expand value to the request.

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

The expression from which to calculate the expand value.

Returns
Type Description
IRecognizeOperationRequest

The request object to send.

View Source

Expand(String)

Adds the specified expand value to the request.

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

The expand value.

Returns
Type Description
IRecognizeOperationRequest

The request object to send.

View Source

GetAsync()

Gets the specified RecognizeOperation.

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

The RecognizeOperation.

View Source

GetAsync(CancellationToken)

Gets the specified RecognizeOperation.

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

The RecognizeOperation.

View Source

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

Adds the specified select value to the request.

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

The expression from which to calculate the select value.

Returns
Type Description
IRecognizeOperationRequest

The request object to send.

View Source

Select(String)

Adds the specified select value to the request.

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

The select value.

Returns
Type Description
IRecognizeOperationRequest

The request object to send.

View Source

UpdateAsync(RecognizeOperation)

Updates the specified RecognizeOperation using PATCH.

Declaration
Task<RecognizeOperation> UpdateAsync(RecognizeOperation recognizeOperationToUpdate)
Parameters
Type Name Description
RecognizeOperation recognizeOperationToUpdate

The RecognizeOperation to update.

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

The updated RecognizeOperation.

View Source

UpdateAsync(RecognizeOperation, CancellationToken)

Updates the specified RecognizeOperation using PATCH.

Declaration
Task<RecognizeOperation> UpdateAsync(RecognizeOperation recognizeOperationToUpdate, CancellationToken cancellationToken)
Parameters
Type Name Description
RecognizeOperation recognizeOperationToUpdate

The RecognizeOperation to update.

System.Threading.CancellationToken cancellationToken

The System.Threading.CancellationToken for the request.

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

The updated RecognizeOperation.

  • View Source
Back to top Generated by DocFX