Пример #1
0
 /// <summary>
 /// Sets the content of the request to the specified content.
 /// </summary>
 /// <param name="nameValueCollection">A collection of name/value pairs.</param>
 /// <returns>An <see cref="IRequest"/> object that represents the request.</returns>
 public static IRequest FormUrlEncoded(this IWith @this, IEnumerable <KeyValuePair <string, string> > nameValueCollection)
 => @this.FormUrlEncoded(new FormUrlEncodedContent(nameValueCollection));