Unsubscribed Event

Fired when the component has successfully unsubscribed from a characteristic.

Syntax

public event OnUnsubscribedHandler OnUnsubscribed;

public delegate void OnUnsubscribedHandler(object sender, BleclientUnsubscribedEventArgs e);

public class BleclientUnsubscribedEventArgs : EventArgs {
  public string ServiceId { get; }
  public string CharacteristicId { get; }
  public string Uuid { get; }
  public string Description { get; }
}
Public Event OnUnsubscribed As OnUnsubscribedHandler

Public Delegate Sub OnUnsubscribedHandler(sender As Object, e As BleclientUnsubscribedEventArgs)

Public Class BleclientUnsubscribedEventArgs Inherits EventArgs
  Public ReadOnly Property ServiceId As String
  Public ReadOnly Property CharacteristicId As String
  Public ReadOnly Property Uuid As String
  Public ReadOnly Property Description As String
End Class

Remarks

This event is fired when the component has successfully unsubscribed from a characteristic.

Uuid and Description are the UUID and Bluetooth SIG user-friendly name (if one is defined) of the characteristic

Refer to the Unsubscribe method for more information.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks BLE 2020 .NET Edition - Version 20.0 [Build 8158]