| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | |
|
| | 6 | | namespace Azure.Core |
| | 7 | | { |
| | 8 | | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Struct, AllowMultiple = true)] |
| | 9 | | internal class CodeGenSuppressAttribute : Attribute |
| | 10 | | { |
| 0 | 11 | | public string Member { get; } |
| 0 | 12 | | public Type[] Parameters { get; } |
| | 13 | |
|
| 0 | 14 | | public CodeGenSuppressAttribute(string member, params Type[] parameters) |
| | 15 | | { |
| 0 | 16 | | Member = member; |
| 0 | 17 | | Parameters = parameters; |
| 0 | 18 | | } |
| | 19 | | } |
| | 20 | | } |