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