Frends.ServiceBus.Send / 1.1.0
Summary
Sends a message to a Service Bus queue or topic with custom properties, which is what subscription filters match on.
Typical use — asynchronous handover, where properties let subscribers select without parsing the body
Input parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| DestinationType | QueueOrTopic |
Queue |
Queue |
Destination type. Possible values:
|
| QueueOrTopicName | String |
– | ExampleQueue |
Name of the queue or topic. |
| SubscriptionName | String |
– | SubscriptionName |
Name of the subscription. |
| ConnectionStringSecret | String |
"Endpoint=sb://[namespace].servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=[secret]" |
Endpoint=sb://[namespace].servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=[secret] |
Service Bus connection string. |
| Properties | MessageProperty[] |
– | Name = ExampleName, Value = ExampleValue |
Custom properties for the message. |
| Data | String |
– | Example text. |
Data to send. |