Ejemplo n.º 1
0
 /// <summary>
 /// Issues the PUT request.
 /// </summary>
 /// <param name=workbookrange>The WorkbookRange object to update.</param>
 /// <param name=""cancellationToken"">The <see cref=""CancellationToken""/> for the request.</param>
 /// <returns>The task to await for async call.</returns>
 public System.Threading.Tasks.Task <WorkbookRange> PutAsync(WorkbookRange workbookrange,
                                                             CancellationToken cancellationToken)
 {
     this.Method = "PUT";
     return(this.SendAsync <WorkbookRange>(workbookrange, cancellationToken));
 }
 /// <summary>
 /// Creates the specified WorkbookRange using POST.
 /// </summary>
 /// <param name="workbookRangeToCreate">The WorkbookRange to create.</param>
 /// <returns>The created WorkbookRange.</returns>
 public System.Threading.Tasks.Task <WorkbookRange> CreateAsync(WorkbookRange workbookRangeToCreate)
 {
     return(this.CreateAsync(workbookRangeToCreate, CancellationToken.None));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Issues the PUT request.
 /// </summary>
 /// <param name=workbookrange>The WorkbookRange object to update.</param>
 /// <returns>The task to await for async call.</returns>
 public System.Threading.Tasks.Task <WorkbookRange> PutAsync(WorkbookRange workbookrange)
 {
     return(this.PutAsync(workbookrange, CancellationToken.None));
 }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="workbookRangeToInitialize">The <see cref="WorkbookRange"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(WorkbookRange workbookRangeToInitialize)
 {
 }