Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc fixes #17842

Merged
merged 1 commit into from
Jan 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Azure.Messaging.ServiceBus.Administration
{
/// <summary>
///
/// The access rights that may be conferred by an authorization rule.
/// </summary>
#pragma warning disable CA1717 // Only FlagsAttribute enums should have plural names
public enum AccessRights
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@
namespace Azure.Messaging.ServiceBus
{
/// <summary>
///
/// The <see cref="ServiceBusReceivedMessage"/> is used to receive data from Service Bus Queues and Subscriptions.
/// When sending messages, the <see cref="ServiceBusMessage"/> is used.
/// </summary>
/// <remarks>
/// The message structure is discussed in detail in the
/// <see href="https://docs.microsoft.com/azure/service-bus-messaging/service-bus-messages-payloads">product documentation</see>.
/// </remarks>
public class ServiceBusReceivedMessage
{
/// <summary>
Expand Down Expand Up @@ -128,7 +133,7 @@ internal ServiceBusReceivedMessage(): this(body: default)
/// </remarks>
public TimeSpan TimeToLive => AmqpMessage.GetTimeToLive();

/// <summary>Gets the a correlation identifier.</summary>
/// <summary>Gets the correlation identifier.</summary>
/// <value>Correlation identifier.</value>
/// <remarks>
/// Allows an application to specify a context for the message for the purposes of correlation,
Expand Down