Skip to content

Commit a4d1f03

Browse files
authored
Updated types supported by ApplicationProperties (Azure#48340)
1 parent cb9abc2 commit a4d1f03

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

sdk/servicebus/Azure.Messaging.ServiceBus/src/Administration/Rules/CorrelationRuleFilter.cs

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,30 @@ public string ContentType
153153
/// </summary>
154154
/// <value>The application specific properties of the message.</value>
155155
/// <remarks>
156-
/// Only following value types are supported:
157-
/// byte, sbyte, char, short, ushort, int, uint, long, ulong, float, double, decimal,
158-
/// bool, Guid, string, Uri, DateTime, DateTimeOffset, TimeSpan, Stream, byte[],
159-
/// and IList / IDictionary of supported types
156+
/// <list type="bullet">
157+
/// <listheader><description>The following types are supported:</description></listheader>
158+
/// <item><description>byte</description></item>
159+
/// <item><description>sbyte</description></item>
160+
/// <item><description>char</description></item>
161+
/// <item><description>short</description></item>
162+
/// <item><description>ushort</description></item>
163+
/// <item><description>int</description></item>
164+
/// <item><description>uint</description></item>
165+
/// <item><description>long</description></item>
166+
/// <item><description>ulong</description></item>
167+
/// <item><description>float</description></item>
168+
/// <item><description>double</description></item>
169+
/// <item><description>decimal</description></item>
170+
/// <item><description>bool</description></item>
171+
/// <item><description>Guid</description></item>
172+
/// <item><description>string</description></item>
173+
/// <item><description>Uri</description></item>
174+
/// <item><description>DateTime</description></item>
175+
/// <item><description>DateTimeOffset</description></item>
176+
/// <item><description>TimeSpan</description></item>
177+
/// <item><description>Stream</description></item>
178+
/// <item><description>byte[]</description></item>
179+
/// </list>
160180
/// </remarks>
161181
public IDictionary<string, object> ApplicationProperties { get; internal set; } = new PropertyDictionary();
162182

0 commit comments

Comments
 (0)