summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-09-18 07:48:34 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-09-18 07:48:34 -0700
commit155443e5214bd98cc0011ea2fbc525b08c48af44 (patch)
tree12a7887905e877233e3fb694a90acab9d00428f5 /src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs
parentcfe8dac81872ed4ba425864d550d66abcae581d2 (diff)
downloadDotNetOpenAuth-155443e5214bd98cc0011ea2fbc525b08c48af44.zip
DotNetOpenAuth-155443e5214bd98cc0011ea2fbc525b08c48af44.tar.gz
DotNetOpenAuth-155443e5214bd98cc0011ea2fbc525b08c48af44.tar.bz2
StyleCop and other compiler warning fixes.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs')
-rw-r--r--src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs b/src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs
index 2cb3ab5..3dd1e8e 100644
--- a/src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs
+++ b/src/DotNetOpenAuth.OpenId.Provider/OpenId/Messages/AssociateDiffieHellmanProviderResponse.cs
@@ -29,11 +29,23 @@ namespace DotNetOpenAuth.OpenId.Messages {
: base(responseVersion, originatingRequest) {
}
+ /// <summary>
+ /// Gets or sets the lifetime, in seconds, of this association. The Relying Party MUST NOT use the association after this time has passed.
+ /// </summary>
+ /// <value>
+ /// An integer, represented in base 10 ASCII.
+ /// </value>
long IAssociateSuccessfulResponseProvider.ExpiresIn {
get { return this.ExpiresIn; }
set { this.ExpiresIn = value; }
}
+ /// <summary>
+ /// Gets or sets the association handle is used as a key to refer to this association in subsequent messages.
+ /// </summary>
+ /// <value>
+ /// A string 255 characters or less in length. It MUST consist only of ASCII characters in the range 33-126 inclusive (printable non-whitespace characters).
+ /// </value>
string IAssociateSuccessfulResponseProvider.AssociationHandle {
get { return this.AssociationHandle; }
set { this.AssociationHandle = value; }