Partager via


EventHubsConnectionStringBuilder Constructeurs

Définition

Surcharges

EventHubsConnectionStringBuilder(String)

Format ConnectionString : Endpoint=sb://namespace_DNS_Name; EntityPath=EVENT_HUB_NAME; SharedAccessKeyName=SHARED_ACCESS_KEY_NAME; SharedAccessKey=SHARED_ACCESS_KEY

EventHubsConnectionStringBuilder(Uri, String, String, String)

Générer une chaîne de connexion consommable par CreateFromConnectionString(String)

EventHubsConnectionStringBuilder(Uri, String, String, TimeSpan)

Générer une chaîne de connexion consommable par CreateFromConnectionString(String)

EventHubsConnectionStringBuilder(Uri, String, String, String, TimeSpan)

Générer une chaîne de connexion consommable par CreateFromConnectionString(String)

EventHubsConnectionStringBuilder(String)

Source:
EventHubsConnectionStringBuilder.cs

Format ConnectionString : Endpoint=sb://namespace_DNS_Name; EntityPath=EVENT_HUB_NAME; SharedAccessKeyName=SHARED_ACCESS_KEY_NAME; SharedAccessKey=SHARED_ACCESS_KEY

public EventHubsConnectionStringBuilder (string connectionString);
new Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder : string -> Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder
Public Sub New (connectionString As String)

Paramètres

connectionString
String

Event Hubs ConnectionString

S’applique à

EventHubsConnectionStringBuilder(Uri, String, String, String)

Source:
EventHubsConnectionStringBuilder.cs

Générer une chaîne de connexion consommable par CreateFromConnectionString(String)

public EventHubsConnectionStringBuilder (Uri endpointAddress, string entityPath, string sharedAccessKeyName, string sharedAccessKey);
new Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder : Uri * string * string * string -> Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder
Public Sub New (endpointAddress As Uri, entityPath As String, sharedAccessKeyName As String, sharedAccessKey As String)

Paramètres

endpointAddress
Uri

Nom de domaine complet pour Event Hubs. Très probablement, {yournamespace}.servicebus.windows.net

entityPath
String

Chemin d’accès de l’entité ou nom du hub d’événements.

sharedAccessKeyName
String

Nom de la clé d’accès partagé

sharedAccessKey
String

Clé d’accès partagé

S’applique à

EventHubsConnectionStringBuilder(Uri, String, String, TimeSpan)

Source:
EventHubsConnectionStringBuilder.cs

Générer une chaîne de connexion consommable par CreateFromConnectionString(String)

public EventHubsConnectionStringBuilder (Uri endpointAddress, string entityPath, string sharedAccessSignature, TimeSpan operationTimeout);
new Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder : Uri * string * string * TimeSpan -> Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder
Public Sub New (endpointAddress As Uri, entityPath As String, sharedAccessSignature As String, operationTimeout As TimeSpan)

Paramètres

endpointAddress
Uri

Nom de domaine complet pour Event Hubs. Très probablement, {yournamespace}.servicebus.windows.net

entityPath
String

Chemin d’accès de l’entité ou nom du hub d’événements.

sharedAccessSignature
String

Signature d’accès partagé

operationTimeout
TimeSpan

Délai d’expiration de l’opération pour les opérations Event Hubs

S’applique à

EventHubsConnectionStringBuilder(Uri, String, String, String, TimeSpan)

Source:
EventHubsConnectionStringBuilder.cs

Générer une chaîne de connexion consommable par CreateFromConnectionString(String)

public EventHubsConnectionStringBuilder (Uri endpointAddress, string entityPath, string sharedAccessKeyName, string sharedAccessKey, TimeSpan operationTimeout);
new Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder : Uri * string * string * string * TimeSpan -> Microsoft.Azure.EventHubs.EventHubsConnectionStringBuilder
Public Sub New (endpointAddress As Uri, entityPath As String, sharedAccessKeyName As String, sharedAccessKey As String, operationTimeout As TimeSpan)

Paramètres

endpointAddress
Uri

Nom de domaine complet pour Event Hubs. Très probablement, {yournamespace}.servicebus.windows.net

entityPath
String

Chemin d’accès de l’entité ou nom du hub d’événements.

sharedAccessKeyName
String

Nom de la clé d’accès partagé

sharedAccessKey
String

Clé d’accès partagé

operationTimeout
TimeSpan

Délai d’expiration de l’opération pour les opérations Event Hubs

S’applique à