次の方法で共有


MessageSender コンストラクター

定義

オーバーロード

MessageSender(ServiceBusConnectionStringBuilder, RetryPolicy)

新しい AMQP MessageSender を作成します。

MessageSender(ServiceBusConnection, String, RetryPolicy)

特定の に新しい AMQP MessageSender を作成します。 ServiceBusConnection

MessageSender(String, String, RetryPolicy)

新しい AMQP MessageSender を作成します。

MessageSender(ServiceBusConnection, String, String, RetryPolicy)

ViaMessageSender を作成します。 これは、別の別のエンティティを介して宛先エンティティにメッセージを送信するために使用できます。

MessageSender(String, String, ITokenProvider, TransportType, RetryPolicy)

新しい MessageSender を作成します

MessageSender(ServiceBusConnectionStringBuilder, RetryPolicy)

ソース:
MessageSender.cs

新しい AMQP MessageSender を作成します。

public MessageSender (Microsoft.Azure.ServiceBus.ServiceBusConnectionStringBuilder connectionStringBuilder, Microsoft.Azure.ServiceBus.RetryPolicy retryPolicy = default);
new Microsoft.Azure.ServiceBus.Core.MessageSender : Microsoft.Azure.ServiceBus.ServiceBusConnectionStringBuilder * Microsoft.Azure.ServiceBus.RetryPolicy -> Microsoft.Azure.ServiceBus.Core.MessageSender
Public Sub New (connectionStringBuilder As ServiceBusConnectionStringBuilder, Optional retryPolicy As RetryPolicy = Nothing)

パラメーター

connectionStringBuilder
ServiceBusConnectionStringBuilder

エンティティ レベルの ServiceBusConnectionStringBuilder 接続の詳細を持つ 。

retryPolicy
RetryPolicy

RetryPolicy Service Bus との通信時に使用される 。 既定値は Default です

注釈

エンティティへの新しい接続を作成します。この接続は、最初の操作中に開かれます。

適用対象

MessageSender(ServiceBusConnection, String, RetryPolicy)

ソース:
MessageSender.cs

特定の に新しい AMQP MessageSender を作成します。 ServiceBusConnection

public MessageSender (Microsoft.Azure.ServiceBus.ServiceBusConnection serviceBusConnection, string entityPath, Microsoft.Azure.ServiceBus.RetryPolicy retryPolicy = default);
new Microsoft.Azure.ServiceBus.Core.MessageSender : Microsoft.Azure.ServiceBus.ServiceBusConnection * string * Microsoft.Azure.ServiceBus.RetryPolicy -> Microsoft.Azure.ServiceBus.Core.MessageSender
Public Sub New (serviceBusConnection As ServiceBusConnection, entityPath As String, Optional retryPolicy As RetryPolicy = Nothing)

パラメーター

serviceBusConnection
ServiceBusConnection

Service Bus 名前空間への接続オブジェクト。

entityPath
String

この送信者が接続する必要があるエンティティのパス。

retryPolicy
RetryPolicy

RetryPolicy Service Bus との通信時に使用される 。 既定値は Default です

適用対象

MessageSender(String, String, RetryPolicy)

ソース:
MessageSender.cs

新しい AMQP MessageSender を作成します。

public MessageSender (string connectionString, string entityPath, Microsoft.Azure.ServiceBus.RetryPolicy retryPolicy = default);
new Microsoft.Azure.ServiceBus.Core.MessageSender : string * string * Microsoft.Azure.ServiceBus.RetryPolicy -> Microsoft.Azure.ServiceBus.Core.MessageSender
Public Sub New (connectionString As String, entityPath As String, Optional retryPolicy As RetryPolicy = Nothing)

パラメーター

connectionString
String

Service Bus との通信に使用される名前空間接続文字列。 エンティティの詳細を含めてはいけません。

entityPath
String

この送信者が接続する必要があるエンティティのパス。

retryPolicy
RetryPolicy

RetryPolicy Service Bus との通信時に使用される 。 既定値は Default です

注釈

エンティティへの新しい接続を作成します。この接続は、最初の操作中に開かれます。

適用対象

MessageSender(ServiceBusConnection, String, String, RetryPolicy)

ソース:
MessageSender.cs

ViaMessageSender を作成します。 これは、別の別のエンティティを介して宛先エンティティにメッセージを送信するために使用できます。

public MessageSender (Microsoft.Azure.ServiceBus.ServiceBusConnection serviceBusConnection, string entityPath, string viaEntityPath, Microsoft.Azure.ServiceBus.RetryPolicy retryPolicy = default);
new Microsoft.Azure.ServiceBus.Core.MessageSender : Microsoft.Azure.ServiceBus.ServiceBusConnection * string * string * Microsoft.Azure.ServiceBus.RetryPolicy -> Microsoft.Azure.ServiceBus.Core.MessageSender
Public Sub New (serviceBusConnection As ServiceBusConnection, entityPath As String, viaEntityPath As String, Optional retryPolicy As RetryPolicy = Nothing)

パラメーター

serviceBusConnection
ServiceBusConnection

Service Bus 名前空間への接続オブジェクト。

entityPath
String

メッセージの最終的な宛先。

viaEntityPath
String

メッセージの最初の宛先。

retryPolicy
RetryPolicy

RetryPolicy Service Bus との通信時に使用される 。 既定値は Default です

注釈

これは主に、トランザクションでメッセージを送信するときに使用されます。 1 つのトランザクション内のエンティティ間でメッセージを送信する必要がある場合は、これを使用して、すべてのメッセージが最初にローカル トランザクションの同じエンティティ/パーティションに到着し、Service Bus がメッセージを実際の宛先に転送できるようにします。

適用対象

MessageSender(String, String, ITokenProvider, TransportType, RetryPolicy)

ソース:
MessageSender.cs

新しい MessageSender を作成します

public MessageSender (string endpoint, string entityPath, Microsoft.Azure.ServiceBus.Primitives.ITokenProvider tokenProvider, Microsoft.Azure.ServiceBus.TransportType transportType = Microsoft.Azure.ServiceBus.TransportType.Amqp, Microsoft.Azure.ServiceBus.RetryPolicy retryPolicy = default);
new Microsoft.Azure.ServiceBus.Core.MessageSender : string * string * Microsoft.Azure.ServiceBus.Primitives.ITokenProvider * Microsoft.Azure.ServiceBus.TransportType * Microsoft.Azure.ServiceBus.RetryPolicy -> Microsoft.Azure.ServiceBus.Core.MessageSender
Public Sub New (endpoint As String, entityPath As String, tokenProvider As ITokenProvider, Optional transportType As TransportType = Microsoft.Azure.ServiceBus.TransportType.Amqp, Optional retryPolicy As RetryPolicy = Nothing)

パラメーター

endpoint
String

Service Bus の完全修飾ドメイン名。 ほとんどの場合、{yournamespace}.servicebus.windows.net

entityPath
String

キュー パス。

tokenProvider
ITokenProvider

承認用のセキュリティ トークンを生成するトークン プロバイダー。

transportType
TransportType

トランスポートの種類。

retryPolicy
RetryPolicy

キュー操作の再試行ポリシー。 既定値は Default です

注釈

エンティティへの新しい接続を作成します。この接続は、最初の操作中に開かれます。

適用対象