Class DescriptorOperationReceivedEventArgs
- Namespace
- OpenQA.Selenium.DevTools.V147.BluetoothEmulation
- Assembly
- Selenium.WebDriver.dll
Event for when a descriptor operation of |type| to the descriptor respresented by |descriptorId| happened. |data| is expected to exist when |type| is write.
public sealed class DescriptorOperationReceivedEventArgs : EventArgs
- Inheritance
-
DescriptorOperationReceivedEventArgs
- Inherited Members
Properties
Data
Gets or sets the data
[JsonPropertyName("data")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Data { get; set; }
Property Value
DescriptorId
Gets or sets the descriptorId
[JsonPropertyName("descriptorId")]
public string DescriptorId { get; set; }
Property Value
Type
Gets or sets the type
[JsonPropertyName("type")]
public DescriptorOperationType Type { get; set; }