Class CallRedirectRequestBuilder
The type CallRedirectRequestBuilder.
Inheritance
System.Object
CallRedirectRequestBuilder
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 CallRedirectRequestBuilder : BaseActionMethodRequestBuilder<ICallRedirectRequest>, ICallRedirectRequestBuilder
Constructors
View SourceCallRedirectRequestBuilder(String, IBaseClient, IEnumerable<ParticipantInfo>, Nullable<CallDisposition>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>)
Constructs a new CallRedirectRequestBuilder.
Declaration
public CallRedirectRequestBuilder(string requestUrl, IBaseClient client, IEnumerable<ParticipantInfo> targets, CallDisposition? targetDisposition, int? timeout, bool? maskCallee, bool? maskCaller)
Parameters
Type | Name | Description |
---|---|---|
System.String | requestUrl | The URL for the request. |
IBaseClient | client | The IBaseClient for handling requests. |
System.Collections.Generic.IEnumerable<ParticipantInfo> | targets | A targets parameter for the OData method call. |
System.Nullable<CallDisposition> | targetDisposition | A targetDisposition parameter for the OData method call. |
System.Nullable<System.Int32> | timeout | A timeout parameter for the OData method call. |
System.Nullable<System.Boolean> | maskCallee | A maskCallee parameter for the OData method call. |
System.Nullable<System.Boolean> | maskCaller | A maskCaller 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 ICallRedirectRequest 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 |
---|---|
ICallRedirectRequest | An instance of a specific request class. |
Overrides
Microsoft.Graph.BaseActionMethodRequestBuilder<Microsoft.Graph.ICallRedirectRequest>.CreateRequest(System.String, System.Collections.Generic.IEnumerable<Microsoft.Graph.Option>)