Class DragDataItem
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
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
MimeType
Mime type of the dragged data.
[JsonPropertyName("mimeType")]
public string MimeType { get; set; }
Property Value
Title
Title associated with a link. Only valid when mimeType == "text/uri-list".
[JsonPropertyName("title")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Title { get; set; }