/// <summary>
 /// Issues the PUT request.
 /// </summary>
 /// <param name="userregistrationmethodsummary">The UserRegistrationMethodSummary 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 <UserRegistrationMethodSummary> PutAsync(UserRegistrationMethodSummary userregistrationmethodsummary,
                                                                             CancellationToken cancellationToken)
 {
     this.Method = "PUT";
     return(this.SendAsync <UserRegistrationMethodSummary>(userregistrationmethodsummary, cancellationToken));
 }
 /// <summary>
 /// Issues the PUT request.
 /// </summary>
 /// <param name="userregistrationmethodsummary">The UserRegistrationMethodSummary object to update.</param>
 /// <returns>The task to await for async call.</returns>
 public System.Threading.Tasks.Task <UserRegistrationMethodSummary> PutAsync(UserRegistrationMethodSummary userregistrationmethodsummary)
 {
     return(this.PutAsync(userregistrationmethodsummary, CancellationToken.None));
 }