IClientEntity Interface

Definition

An interface showing the common functionality between all Service Bus clients.

public interface IClientEntity
type IClientEntity = interface
Public Interface IClientEntity
Derived

Properties

ClientId

Gets the ID to identify this client. This can be used to correlate logs and exceptions.

IsClosedOrClosing

Returns true if the client is closed or closing.

OperationTimeout

Duration after which individual operations will timeout.

OwnsConnection

Returns true if connection is owned and false if connection is shared.

Path

Gets the entity path.

RegisteredPlugins

Gets a list of currently registered plugins for this client.

ServiceBusConnection

Connection object to the service bus namespace.

Methods

CloseAsync()

Closes the Client. Closes the connections opened by it.

RegisterPlugin(ServiceBusPlugin)

Registers a ServiceBusPlugin to be used with this client.

UnregisterPlugin(String)

Unregisters a ServiceBusPlugin.

Applies to