@@ -33,7 +33,7 @@ public TopicDescription(string path)
3333 /// <remarks>
3434 /// This is the default value used when <see cref="Message.TimeToLive"/> is not set on a
3535 /// message itself. Messages older than their TimeToLive value will expire and no longer be retained in the message store.
36- /// Subscribers will be unable to receive expired messages.
36+ /// Subscribers will be unable to receive expired messages.
3737 /// Default value is <see cref="TimeSpan.MaxValue"/>.
3838 /// </remarks>
3939 public TimeSpan DefaultMessageTimeToLive
@@ -88,7 +88,7 @@ public TimeSpan AutoDeleteOnIdle
8888 /// The <see cref="TimeSpan"/> duration of duplicate detection history that is maintained by the service.
8989 /// </summary>
9090 /// <remarks>
91- /// The default value is 1 minute. Max value is 1 day and minimum is 20 seconds.
91+ /// The default value is 1 minute. Max value is 7 days and minimum is 20 seconds.
9292 /// </remarks>
9393 public TimeSpan DuplicateDetectionHistoryTimeWindow
9494 {
@@ -108,7 +108,7 @@ public TimeSpan DuplicateDetectionHistoryTimeWindow
108108 /// <summary>
109109 /// Path of the topic relative to the namespace base address.
110110 /// </summary>
111- /// <remarks>Max length is 260 chars. Cannot start or end with a slash.
111+ /// <remarks>Max length is 260 chars. Cannot start or end with a slash.
112112 /// Cannot have restricted characters: '@','?','#','*'</remarks>
113113 public string Path
114114 {
@@ -153,8 +153,8 @@ internal set
153153 public bool EnablePartitioning { get ; set ; } = false ;
154154
155155 /// <summary>
156- /// Defines whether ordering needs to be maintained. If true, messages sent to topic will be
157- /// forwarded to the subscription in order.
156+ /// Defines whether ordering needs to be maintained. If true, messages sent to topic will be
157+ /// forwarded to the subscription in order.
158158 /// </summary>
159159 /// <remarks>Defaults to false.</remarks>
160160 public bool SupportOrdering { get ; set ; } = false ;
@@ -190,7 +190,7 @@ public string UserMetadata
190190
191191 /// <summary>
192192 /// List of properties that were retrieved using GetTopic but are not understood by this version of client is stored here.
193- /// The list will be sent back when an already retrieved TopicDescription will be used in UpdateTopic call.
193+ /// The list will be sent back when an already retrieved TopicDescription will be used in UpdateTopic call.
194194 /// </summary>
195195 internal List < object > UnknownProperties { get ; set ; }
196196
@@ -207,7 +207,7 @@ public override bool Equals(object obj)
207207
208208 public bool Equals ( TopicDescription otherDescription )
209209 {
210- if ( otherDescription is TopicDescription other
210+ if ( otherDescription is TopicDescription other
211211 && this . Path . Equals ( other . Path , StringComparison . OrdinalIgnoreCase )
212212 && this . AutoDeleteOnIdle . Equals ( other . AutoDeleteOnIdle )
213213 && this . DefaultMessageTimeToLive . Equals ( other . DefaultMessageTimeToLive )
0 commit comments