diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-12 07:58:09 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-12 07:58:09 -0700 |
commit | 6c4936e194080e6a7d2194870cf57814d6432eff (patch) | |
tree | aafb28006cb0aa9e9125cce940967e051c12a53d /src/DotNetOAuth/Messaging/MessagingStrings.Designer.cs | |
parent | 608bdfba197391ddd98acdf1a4a75062e5f431e5 (diff) | |
download | DotNetOpenAuth-6c4936e194080e6a7d2194870cf57814d6432eff.zip DotNetOpenAuth-6c4936e194080e6a7d2194870cf57814d6432eff.tar.gz DotNetOpenAuth-6c4936e194080e6a7d2194870cf57814d6432eff.tar.bz2 |
Added expiring messages and replay protection support infrastructure.
Diffstat (limited to 'src/DotNetOAuth/Messaging/MessagingStrings.Designer.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/MessagingStrings.Designer.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/DotNetOAuth/Messaging/MessagingStrings.Designer.cs b/src/DotNetOAuth/Messaging/MessagingStrings.Designer.cs index e4d767d..27d4775 100644 --- a/src/DotNetOAuth/Messaging/MessagingStrings.Designer.cs +++ b/src/DotNetOAuth/Messaging/MessagingStrings.Designer.cs @@ -97,6 +97,15 @@ namespace DotNetOAuth.Messaging { }
/// <summary>
+ /// Looks up a localized string similar to The message expired at {0} and it is now {1}..
+ /// </summary>
+ internal static string ExpiredMessage {
+ get {
+ return ResourceManager.GetString("ExpiredMessage", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to This method requires a current HttpContext. Alternatively, use an overload of this method that allows you to pass in information without an HttpContext..
/// </summary>
internal static string HttpContextRequired {
@@ -124,6 +133,24 @@ namespace DotNetOAuth.Messaging { }
/// <summary>
+ /// Looks up a localized string similar to This message has already been processed. This could indicate a replay attack in progress..
+ /// </summary>
+ internal static string ReplayAttackDetected {
+ get {
+ return ResourceManager.GetString("ReplayAttackDetected", resourceCulture);
+ }
+ }
+
+ /// <summary>
+ /// Looks up a localized string similar to This channel does not support replay protection..
+ /// </summary>
+ internal static string ReplayProtectionNotSupported {
+ get {
+ return ResourceManager.GetString("ReplayProtectionNotSupported", resourceCulture);
+ }
+ }
+
+ /// <summary>
/// Looks up a localized string similar to Message signature was incorrect..
/// </summary>
internal static string SignatureInvalid {
|