Class CallRecognizeRequestBuilder
The type CallRecognizeRequestBuilder.
Inheritance
System.Object
CallRecognizeRequestBuilder
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public class CallRecognizeRequestBuilder : BaseActionMethodRequestBuilder<ICallRecognizeRequest>, ICallRecognizeRequestBuilder
Constructors
View SourceCallRecognizeRequestBuilder(String, IBaseClient, IEnumerable<Prompt>, Nullable<Boolean>, String, Nullable<Int32>, Nullable<Int32>, IEnumerable<RecognitionOption>, CollectDigits, String)
Constructs a new CallRecognizeRequestBuilder.
Declaration
public CallRecognizeRequestBuilder(string requestUrl, IBaseClient client, IEnumerable<Prompt> prompts, bool? bargeInAllowed, string culture, int? initialSilenceTimeoutInSeconds, int? interDigitTimeoutInSeconds, IEnumerable<RecognitionOption> choices, CollectDigits collectDigits, string clientContext)
Parameters
Type | Name | Description |
---|---|---|
System.String | requestUrl | The URL for the request. |
IBaseClient | client | The IBaseClient for handling requests. |
System.Collections.Generic.IEnumerable<Prompt> | prompts | A prompts parameter for the OData method call. |
System.Nullable<System.Boolean> | bargeInAllowed | A bargeInAllowed parameter for the OData method call. |
System.String | culture | A culture parameter for the OData method call. |
System.Nullable<System.Int32> | initialSilenceTimeoutInSeconds | A initialSilenceTimeoutInSeconds parameter for the OData method call. |
System.Nullable<System.Int32> | interDigitTimeoutInSeconds | A interDigitTimeoutInSeconds parameter for the OData method call. |
System.Collections.Generic.IEnumerable<RecognitionOption> | choices | A choices parameter for the OData method call. |
CollectDigits | collectDigits | A collectDigits parameter for the OData method call. |
System.String | clientContext | A clientContext parameter for the OData method call. |
Methods
View SourceCreateRequest(String, IEnumerable<Option>)
A method used by the base class to construct a request class instance.
Declaration
protected override ICallRecognizeRequest CreateRequest(string functionUrl, IEnumerable<Option> options)
Parameters
Type | Name | Description |
---|---|---|
System.String | functionUrl | The request URL to |
System.Collections.Generic.IEnumerable<Option> | options | The query and header options for the request. |
Returns
Type | Description |
---|---|
ICallRecognizeRequest | An instance of a specific request class. |
Overrides
Microsoft.Graph.BaseActionMethodRequestBuilder<Microsoft.Graph.ICallRecognizeRequest>.CreateRequest(System.String, System.Collections.Generic.IEnumerable<Microsoft.Graph.Option>)