Class CharacteristicOperationReceivedEventArgs
- Namespace
- OpenQA.Selenium.DevTools.V148.BluetoothEmulation
- Assembly
- Selenium.WebDriver.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 class CharacteristicOperationReceivedEventArgs : EventArgs
- Inheritance
-
CharacteristicOperationReceivedEventArgs
- Inherited Members
Properties
CharacteristicId
Gets or sets the characteristicId
[JsonPropertyName("characteristicId")]
public string CharacteristicId { get; set; }
Property Value
Data
Gets or sets the data
[JsonPropertyName("data")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Data { get; set; }
Property Value
Type
Gets or sets the type
[JsonPropertyName("type")]
public CharacteristicOperationType Type { get; set; }
Property Value
WriteType
Gets or sets the writeType
[JsonPropertyName("writeType")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CharacteristicWriteType? WriteType { get; set; }