Exemple #1
0
 /// <summary>
 /// AppendDataToBody() appends data to the request body. A content-length
 /// request header will be automatically generated.
 /// </summary>
 /// <param name="data">A byte array buffer holding the data.</param>
 /// <param name="len">The length, in bytes, of the data.</param>
 /// <returns>true if successful, false if any of the parameters are invalid.</returns>
 public bool AppendDataToBody(byte[] data, uint len)
 => PPBURLRequestInfo.AppendDataToBody(this, data, len) == PPBool.True;