Table of Contents

Class DragDataItem

Namespace
PuppeteerSharp
Assembly
PuppeteerSharp.dll

Item returned by drag methods.

public class DragDataItem
Inheritance
DragDataItem

Properties

BaseURL

Stores the base URL for the contained markup. Only valid when mimeType == "text/html".

public string BaseURL { get; set; }

Property Value

string

Data

Depending of the value of mimeType, it contains the dragged link, text, HTML markup or any other data.

public string Data { get; set; }

Property Value

string

MimeType

Mime type of the dragged data.

public string MimeType { get; set; }

Property Value

string

Title

Title associated with a link. Only valid when mimeType == "text/uri-list".

public string Title { get; set; }

Property Value

string