diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-13 21:53:29 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-13 21:53:29 -0700 |
commit | c6cccd4871c4377154ecda984697ff4c610e826f (patch) | |
tree | 91371ec376fb5c1291f4b6e0ecc1cf4ab7f2f191 | |
parent | b89e5aecc983796f334aae1bed55a3784c0206c7 (diff) | |
download | DotNetOpenAuth-c6cccd4871c4377154ecda984697ff4c610e826f.zip DotNetOpenAuth-c6cccd4871c4377154ecda984697ff4c610e826f.tar.gz DotNetOpenAuth-c6cccd4871c4377154ecda984697ff4c610e826f.tar.bz2 |
Added missing [Serializable] to AttributeRequest so that authentication requests can be persisted in session stores.v3.0.0.9073Beta2
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Extensions/AttributeExchange/AttributeRequest.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Extensions/AttributeExchange/AttributeRequest.cs b/src/DotNetOpenAuth/OpenId/Extensions/AttributeExchange/AttributeRequest.cs index 2f8559d..e508233 100644 --- a/src/DotNetOpenAuth/OpenId/Extensions/AttributeExchange/AttributeRequest.cs +++ b/src/DotNetOpenAuth/OpenId/Extensions/AttributeExchange/AttributeRequest.cs @@ -5,6 +5,7 @@ //----------------------------------------------------------------------- namespace DotNetOpenAuth.OpenId.Extensions.AttributeExchange { + using System; using System.Diagnostics; using DotNetOpenAuth.Messaging; @@ -12,6 +13,7 @@ namespace DotNetOpenAuth.OpenId.Extensions.AttributeExchange { /// An individual attribute to be requested of the OpenID Provider using /// the Attribute Exchange extension. /// </summary> + [Serializable] public class AttributeRequest { /// <summary> /// Backing field for the <see cref="Count"/> property. |