/// <summary>
 /// Gets the request builder for CallTransfer.
 /// </summary>
 /// <returns>The <see cref="ICallTransferRequestBuilder"/>.</returns>
 public ICallTransferRequestBuilder Transfer(
     InvitationParticipantInfo transferTarget = null)
 {
     return(new CallTransferRequestBuilder(
                this.AppendSegmentToRequestUrl("microsoft.graph.transfer"),
                this.Client,
                transferTarget));
 }
示例#2
0
 /// <summary>
 /// Constructs a new <see cref="CallTransferRequestBuilder"/>.
 /// </summary>
 /// <param name="requestUrl">The URL for the request.</param>
 /// <param name="client">The <see cref="IBaseClient"/> for handling requests.</param>
 /// <param name="transferTarget">A transferTarget parameter for the OData method call.</param>
 public CallTransferRequestBuilder(
     string requestUrl,
     IBaseClient client,
     InvitationParticipantInfo transferTarget)
     : base(requestUrl, client)
 {
     this.SetParameter("transferTarget", transferTarget, false);
 }