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
In this PR:
- Ability to provide a handler to capture queue messages that are in invalid format.
Bonus:
- Ability to get parent queue service (like we did in #16437 )
Pending dependency: #18170
Copy file name to clipboardExpand all lines: sdk/storage/Azure.Storage.Queues/README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,6 +125,20 @@ QueueClient queue = new QueueClient(accountUri, new DefaultAzureCredential());
125
125
126
126
Learn more about enabling Azure Active Directory for authentication with Azure Storage in [our documentation][storage_ad] and [our samples](#next-steps).
127
127
128
+
### Message encoding
129
+
130
+
This version of library does not encode message by default. V11 and prior versions as well as Azure Functions use base64-encoded messages by default.
131
+
Therefore it's recommended to use this feature for interop scenarios.
0 commit comments