diff options
Diffstat (limited to 'src/DotNetOAuth/ServiceProviderDescription.cs')
-rw-r--r-- | src/DotNetOAuth/ServiceProviderDescription.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DotNetOAuth/ServiceProviderDescription.cs b/src/DotNetOAuth/ServiceProviderDescription.cs index efb4290..870133c 100644 --- a/src/DotNetOAuth/ServiceProviderDescription.cs +++ b/src/DotNetOAuth/ServiceProviderDescription.cs @@ -7,6 +7,7 @@ namespace DotNetOAuth {
using System;
using System.Diagnostics;
+ using System.Diagnostics.CodeAnalysis;
using System.Linq;
using DotNetOAuth.ChannelElements;
using DotNetOAuth.Messaging;
@@ -72,6 +73,7 @@ namespace DotNetOAuth { /// <summary>
/// Gets or sets the signing policies that apply to this Service Provider.
/// </summary>
+ [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Type initializers require this format.")]
public ITamperProtectionChannelBindingElement[] TamperProtectionElements { get; set; }
/// <summary>
|