Exemplo n.º 1
0
 /// <summary>
 /// Create a new <see cref="CefPostData"/> object with the application/x-www-form-urlencoded data.
 /// </summary>
 /// <param name="content">The post data.</param>
 public CefPostData(NameValueCollection content)
     : this(CefNativeApi.cef_post_data_create())
 {
     if (content != null)
     {
         AddUrlEncoded(content);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// Create a new <see cref="CefPostData"/> object with the application/x-www-form-urlencoded data.
 /// </summary>
 /// <param name="content">The post data.</param>
 public CefPostData(IEnumerable <KeyValuePair <string, string> > content)
     : this(CefNativeApi.cef_post_data_create())
 {
     if (content != null)
     {
         AddUrlEncoded(content);
     }
 }
Exemplo n.º 3
0
 /// <summary>
 /// Create a new CefPostData object.
 /// </summary>
 public CefPostData()
     : this(CefNativeApi.cef_post_data_create())
 {
 }