Skip to content
Closed
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 @@ -9,13 +9,13 @@ namespace Azure.Core
{
/// <summary>
/// Decorates an operation whose invocation should potentially be audited
/// by Azure service implementations. Auditing could be recommended
/// by Azure service implementations. Auditing could be recommended
/// because the operation changes critical service state, creates delegated
/// access to a resource, affects data retention, etc. It's a best guess
/// from the service team that the operation should be audited to mitigate
/// any potential future issues.
/// </summary>
[AttributeUsage(AttributeTargets.Method)]
[AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class | AttributeTargets.Method)]
internal class CallerShouldAuditAttribute : Attribute
{
/// <summary>
Expand Down