Table of Contents

Property SendUploadDataHandler

Namespace
DotNetBrowser.Net
Assembly
DotNetBrowser.dll

SendUploadDataHandler

Gets or sets a handler that is used when the upload data is about to send to the web server. Can be used to override the upload data before it is sent.

IHandler<SendUploadDataParameters, SendUploadDataResponse> SendUploadDataHandler { get; set; }

Property Value

IHandler<SendUploadDataParameters, SendUploadDataResponse>

Remarks

Use one of the following methods to modify the upload data:

Use the Continue() method if you do not need to modify the upload data.

If exception occurs inside the handler, the default behavior will be applied - the Continue() method will be used.

Exceptions

ObjectDisposedException

The INetwork object has already been disposed.