你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EventHubConnection 类

定义

连接到 Azure 事件中心 服务,使客户端能够与事件中心命名空间中的特定事件中心实例进行通信。 单个连接可以在多个事件中心生成者和/或使用者之间共享,也可以用作单个生成者或使用者客户端的专用连接。

public class EventHubConnection : IAsyncDisposable
type EventHubConnection = class
    interface IAsyncDisposable
Public Class EventHubConnection
Implements IAsyncDisposable
继承
EventHubConnection
实现

构造函数

EventHubConnection()

初始化 EventHubConnection 类的新实例。

EventHubConnection(String)

初始化 EventHubConnection 类的新实例。

EventHubConnection(String, EventHubConnectionOptions)

初始化 EventHubConnection 类的新实例。

EventHubConnection(String, String)

初始化 EventHubConnection 类的新实例。

EventHubConnection(String, String, AzureNamedKeyCredential, EventHubConnectionOptions)

初始化 EventHubConnection 类的新实例。

EventHubConnection(String, String, AzureSasCredential, EventHubConnectionOptions)

初始化 EventHubConnection 类的新实例。

EventHubConnection(String, String, EventHubConnectionOptions)

初始化 EventHubConnection 类的新实例。

EventHubConnection(String, String, TokenCredential, EventHubConnectionOptions)

初始化 EventHubConnection 类的新实例。

属性

EventHubName

与连接关联的事件中心的名称,特定于包含该连接的事件中心命名空间。

FullyQualifiedNamespace

与连接关联的完全限定的事件中心命名空间。 这可能类似于 {yournamespace}.servicebus.windows.net

IsClosed

指示是否已关闭。EventHubConnection

方法

CloseAsync(CancellationToken)

关闭与事件中心命名空间和关联的事件中心的连接。

DisposeAsync()

执行清理 使用 EventHubConnection的资源所需的任务,包括确保连接本身已关闭。

适用于