You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Behind the scenes, it delegates the work to Azure Service Bus [event-driven message pump](https://docs.microsoft.com/en-us/dotnet/api/microsoft.servicebus.messaging.messagereceiver.onmessage?view=azureservicebus-4.1.1#Microsoft_ServiceBus_Messaging_MessageReceiver_OnMessage_System_Action_Microsoft_ServiceBus_Messaging_BrokeredMessage__Microsoft_ServiceBus_Messaging_OnMessageOptions_).
68
70
69
-
### Filters
70
-
71
-
#### Create Queue Filter
71
+
### Create Queue Filter
72
72
73
73
To modify the options a queue gets created with, provide a `CreateQueueFilter` filter and modify the `QueueDescription`.
74
74
@@ -83,7 +83,7 @@ For instance, to change the default TTL and have messages expire automatically a
83
83
84
84
If the queue already exists, any change to the queue options will result in an update.
85
85
86
-
####Message Filters
86
+
### Message Filters
87
87
88
88
There are optional `PublishMessageFilter` and `GetMessageFilter` callbacks which can be used to intercept outgoing and incoming messages. The Type name of the message body that was published is available in the `Label` property, e.g:
89
89
@@ -111,5 +111,4 @@ Note that `brokeredMsg` parameter of `GetMessageFilter` when explicitly retrievi
0 commit comments