Table of Contents

Property DropHandler

Namespace
DotNetBrowser.Input.DragAndDrop
Assembly
DotNetBrowser.dll

DropHandler

Gets or sets a handler that is used when the input system reports an underlying drop event with the browser as the drag target.

IHandler<DropParameters> DropHandler { get; set; }

Property Value

IHandler<DropParameters>

Remarks

Important: the engine will be blocked until the Handle() method returns. It is not allowed to invoke any engine methods in the scope of this handler implementation.

The parameters are valid only in the scope of the Handle() method and become invalid when this method returns.

Exceptions

ObjectDisposedException

The IDragAndDrop has already been disposed.

ConnectionClosedException

The connection to the Chromium engine is closed.