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
{{ message }}
This repository was archived by the owner on Oct 12, 2023. It is now read-only.
Changing topicName param to topicPath in CreateRuleAsync, fixing variable typo in CreateRuleAsync (#546)
* Changing topicName to topicPath in CreateRuleAsync
CreateRuleAsync uses topicName as a parameter whereas the rest of the methods use topicPath. Changing for consistency.
* Fixing var typo in CreateRuleAsync
* Updating ApiApprovals.ApproveAzureServiceBus.approved.txt
* Adding back in trimmed whitespace to approved txt file to resolve unit test issue
* Fixed topicPath description in comments
Copy file name to clipboardExpand all lines: src/Microsoft.Azure.ServiceBus/Management/ManagementClient.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -634,7 +634,7 @@ public virtual async Task<SubscriptionDescription> CreateSubscriptionAsync(Subsc
634
634
/// <summary>
635
635
/// Adds a new rule to the subscription under given topic.
636
636
/// </summary>
637
-
/// <param name="topicName">The topic name relative to the service namespace base address.</param>
637
+
/// <param name="topicPath">The topic path relative to the service namespace base address.</param>
638
638
/// <param name="subscriptionName">The name of the subscription.</param>
639
639
/// <param name="ruleDescription">A <see cref="RuleDescription"/> object describing the attributes with which the messages are matched and acted upon.</param>
640
640
/// <param name="cancellationToken"></param>
@@ -646,16 +646,16 @@ public virtual async Task<SubscriptionDescription> CreateSubscriptionAsync(Subsc
646
646
/// <exception cref="ServerBusyException">The server is busy. You should wait before you retry the operation.</exception>
647
647
/// <exception cref="ServiceBusException">An internal error or unexpected exception occurs.</exception>
648
648
/// <returns><see cref="RuleDescription"/> of the recently created rule.</returns>
0 commit comments