Skip to content

Commit 532f950

Browse files
authored
[ServiceBus] fix reference name conflict in comments (#22613)
1 parent 5291f8e commit 532f950

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sdk/servicebus/Azure.Messaging.ServiceBus/src/Primitives/ServiceBusModelFactory.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -215,17 +215,17 @@ public static RuleProperties RuleProperties(
215215
};
216216

217217
/// <summary>
218-
/// Initializes a new instance of the <see cref="ServiceBusMessageBatch" /> class.
218+
/// Initializes a new instance of the <see cref="Azure.Messaging.ServiceBus.ServiceBusMessageBatch" /> class.
219219
/// </summary>
220220
///
221221
/// <param name="batchSizeBytes">The size, in bytes, that the batch should report; this is a static value and will not mutate as messages are added.</param>
222-
/// <param name="batchMessageStore">A list to which messages will be added when <see cref="ServiceBusMessageBatch.TryAddMessage" /> calls are successful.</param>
222+
/// <param name="batchMessageStore">A list to which messages will be added when <see cref="Azure.Messaging.ServiceBus.ServiceBusMessageBatch.TryAddMessage" /> calls are successful.</param>
223223
/// <param name="batchOptions">The set of options to consider when creating this batch.</param>
224-
/// <param name="tryAddCallback"> A function that will be invoked when <see cref="ServiceBusMessageBatch.TryAddMessage" /> is called;
225-
/// the return of this callback represents the result of <see cref="ServiceBusMessageBatch.TryAddMessage" />.
224+
/// <param name="tryAddCallback"> A function that will be invoked when <see cref="Azure.Messaging.ServiceBus.ServiceBusMessageBatch.TryAddMessage" /> is called;
225+
/// the return of this callback represents the result of <see cref="Azure.Messaging.ServiceBus.ServiceBusMessageBatch.TryAddMessage" />.
226226
/// If not provided, all events will be accepted into the batch.</param>
227227
///
228-
/// <returns>The <see cref="ServiceBusMessageBatch" /> instance that was created.</returns>
228+
/// <returns>The <see cref="Azure.Messaging.ServiceBus.ServiceBusMessageBatch" /> instance that was created.</returns>
229229
///
230230
public static ServiceBusMessageBatch ServiceBusMessageBatch(long batchSizeBytes,
231231
IList<ServiceBusMessage> batchMessageStore,

0 commit comments

Comments
 (0)