UrlRequestJob.Write Method |
Appends a chunk of the response data. This method may be called multiple
times to append several chunks.
Namespace:
DotNetBrowser.Net
Assembly:
DotNetBrowser (in DotNetBrowser.dll) Version: 2.27.0
Syntaxpublic void Write(
byte[] data
)
Parameters
- data
- Type:System.Byte[]
The response data bytes.
Remarks
When all the chunks are written either the
Complete()
or
Fail() method must be called to indicate that the request is
completed or failed.
See Also