You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
/// <summary>The maximum amount of content to load into memory when sending content with a request.</summary>
247
+
/// <value>The maximum size of content to load into memory.</value>
248
+
/// <remarks>
249
+
/// <para>When sending content with a request, the content can be provided either in memory, or in a streaming manner.</para>
250
+
/// <para>If the content is provided in memory, the underlying NSURLSession will set the Content-Length header to the size of the content.</para>
251
+
/// <para>If the content is provided in a streaming manner, the underlying NSURLSession will send the content using a chunked encoding, and the Content-Length header will not be set.</para>
252
+
/// <para>This means that if a chunked encoding is not desirable, or a Content-Length header is required, then the content must be provided in memory.</para>
253
+
/// <para>On the other hand, if upload progress is needed, it's required to provide the content in a streaming manner, and this can be forced by setting this property to 0.</para>
254
+
/// <para>If the content to upload doesn't have a pre-determined length, then it will always be sent in a streaming manner.</para>