Interface IDisconnectable
- Namespace
- Jabra.NET.Sdk.ToolsAndHelpers
- Assembly
- Jabra.NET.Sdk.dll
Defines an object as something that can disconnect. In regards to the Jabra.NET.Sdk, examples of things that can disconnect are devices and connections.
public interface IDisconnectable : IEquatable<IDisconnectable>
- Inherited Members
Properties
IsConnected
Indicates whether the object is currently connected.
bool IsConnected { get; }
Property Value
OnDisconnect
Emits when the item gets physically disconnected, e.g. a USB IConnection gets its cable detached, or a IDevice gets all of its connections disconnected.
IObservable<Unit> OnDisconnect { get; }
Property Value
- IObservable<Unit>
Methods
IsEqual(IDisconnectable)
Determines whether the specified object is equal to the current object.
bool IsEqual(IDisconnectable obj)
Parameters
obj
IDisconnectableThe object to compare with the current object.
Returns
- bool
true
if the specified object is equal to the current object; otherwise,false
.