Table of Contents

Class DragDataItem

Namespace
OpenQA.Selenium.DevTools.V148.Input
Assembly
Selenium.WebDriver.dll

DragDataItem

public sealed class DragDataItem
Inheritance
DragDataItem
Inherited Members

Properties

BaseURL

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

[JsonPropertyName("baseURL")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
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.

[JsonPropertyName("data")]
public string Data { get; set; }

Property Value

string

MimeType

Mime type of the dragged data.

[JsonPropertyName("mimeType")]
public string MimeType { get; set; }

Property Value

string

Title

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

[JsonPropertyName("title")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Title { get; set; }

Property Value

string