Class DescriptorOperationReceivedEventArgs
- Namespace
- Selenium.WebDriver.BiDi.Cdp.BluetoothEmulation
- Assembly
- Selenium.WebDriver.BiDi.Cdp.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 record DescriptorOperationReceivedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<DescriptorOperationReceivedEventArgs>
- Inheritance
-
EventArgsDescriptorOperationReceivedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
DescriptorOperationReceivedEventArgs(string, DescriptorOperationType, string?)
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 DescriptorOperationReceivedEventArgs(string DescriptorId, DescriptorOperationType Type, string? Data = null)
Parameters
DescriptorIdstringTypeDescriptorOperationTypeDatastring
Properties
Data
public string? Data { get; init; }
Property Value
DescriptorId
public string DescriptorId { get; init; }
Property Value
Type
public DescriptorOperationType Type { get; init; }