WebTestRequest.SendChunked Property

Gets or sets a value that indicates whether the user can send a chunked request body.

Namespace:  Microsoft.VisualStudio.TestTools.WebTesting
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)

Syntax

'Declaration
Public Property SendChunked As Boolean
'Usage
Dim instance As WebTestRequest 
Dim value As Boolean 

value = instance.SendChunked

instance.SendChunked = value
public bool SendChunked { get; set; }
public:
property bool SendChunked {
    bool get ();
    void set (bool value);
}
public function get SendChunked () : boolean 
public function set SendChunked (value : boolean)

Property Value

Type: System.Boolean
true if chunked requests are sent; otherwise, false. The default is false.

Remarks

This is useful for very large requests.

.NET Framework Security

See Also

Reference

WebTestRequest Class

WebTestRequest Members

Microsoft.VisualStudio.TestTools.WebTesting Namespace