/// <summary>
 /// Set String value with leading and trailing whitespace
 /// '&lt;tab&gt;&lt;space&gt;&lt;space&gt;Now is the time for all good men to
 /// come to the aid of their country&lt;tab&gt;&lt;space&gt;&lt;space&gt;'
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='stringBody'>
 /// Possible values include: '    Now is the time for all good men to come to
 /// the aid of their country    '
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task PutWhitespaceAsync(this IStringModel operations, string stringBody, CancellationToken cancellationToken = default(CancellationToken))
 {
     await operations.PutWhitespaceWithHttpMessagesAsync(stringBody, null, cancellationToken).ConfigureAwait(false);
 }