Table of Contents

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
EventArgs
CharacteristicOperationReceivedEventArgs
Implements
IEquatable<EventArgs>
Inherited Members
EventArgs.ToString()
EventArgs.GetHashCode()
EventArgs.Equals(EventArgs)
EventArgs.<Clone>$()
EventArgs.BiDi
EventArgs.AdditionalData
EventArgs.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

CharacteristicId string
Type CharacteristicOperationType
Data string
WriteType CharacteristicWriteType?

Properties

CharacteristicId

public string CharacteristicId { get; init; }

Property Value

string

Data

public string? Data { get; init; }

Property Value

string

Type

public CharacteristicOperationType Type { get; init; }

Property Value

CharacteristicOperationType

WriteType

public CharacteristicWriteType? WriteType { get; init; }

Property Value

CharacteristicWriteType?