Table of Contents

Class DragDataItem

Namespace
Selenium.WebDriver.BiDi.Cdp.Input
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record DragDataItem : IEquatable<DragDataItem>
Inheritance
DragDataItem
Implements
Inherited Members

Constructors

DragDataItem(string, string)

public DragDataItem(string MimeType, string Data)

Parameters

MimeType string

Mime type of the dragged data.

Data string

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

Properties

BaseURL

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

public string? BaseURL { get; init; }

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; init; }

Property Value

string

MimeType

Mime type of the dragged data.

public string MimeType { get; init; }

Property Value

string

Title

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

public string? Title { get; init; }

Property Value

string