Class CharacteristicOperationReceivedEventArgs
- Namespace
- Selenium.WebDriver.BiDi.Cdp.BluetoothEmulation
- Assembly
- Selenium.WebDriver.BiDi.Cdp.dll
Event for when a characteristic operation of |type| to the characteristic respresented by |characteristicId| happened. |data| and |writeType| is expected to exist when |type| is write.
public sealed record CharacteristicOperationReceivedEventArgs : EventArgs, IEquatable<EventArgs>, IEquatable<CharacteristicOperationReceivedEventArgs>
- Inheritance
-
EventArgsCharacteristicOperationReceivedEventArgs
- Implements
-
IEquatable<EventArgs>
- Inherited Members
-
EventArgs.ToString()EventArgs.GetHashCode()EventArgs.Equals(EventArgs)EventArgs.<Clone>$()EventArgs.BiDiEventArgs.AdditionalDataEventArgs.AdditionalMessageData
Constructors
CharacteristicOperationReceivedEventArgs(string, CharacteristicOperationType, string?, CharacteristicWriteType?)
Event for when a characteristic operation of |type| to the characteristic respresented by |characteristicId| happened. |data| and |writeType| is expected to exist when |type| is write.
public CharacteristicOperationReceivedEventArgs(string CharacteristicId, CharacteristicOperationType Type, string? Data = null, CharacteristicWriteType? WriteType = null)
Parameters
CharacteristicIdstringTypeCharacteristicOperationTypeDatastringWriteTypeCharacteristicWriteType?
Properties
CharacteristicId
public string CharacteristicId { get; init; }
Property Value
Data
public string? Data { get; init; }
Property Value
Type
public CharacteristicOperationType Type { get; init; }
Property Value
WriteType
public CharacteristicWriteType? WriteType { get; init; }