System.Net.Http.StreamContent.ReadOnlyStream.WriteAsync C# (CSharp) Method

WriteAsync() public method

public WriteAsync ( byte buffer, int offset, int count, Threading cancellationToken ) : Task
buffer byte
offset int
count int
cancellationToken Threading
return Task
            public override Task WriteAsync(byte[] buffer, int offset, int count, Threading.CancellationToken cancellationToken)
            {
                throw new NotSupportedException(SR.net_http_content_readonly_stream);
            }
        }
StreamContent.ReadOnlyStream