diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-07 08:08:32 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-05-07 08:08:32 -0700 |
commit | ade066736acbd902a7c84b174ac38a1679d52ff0 (patch) | |
tree | e0c8894613be5587a90f1b74c4e3d76b33666d85 /samples/DotNetOpenAuth.ApplicationBlock/CustomExtensions/AcmeResponse.cs | |
parent | e4dd636f81f33c8987db773661bc23166932fbae (diff) | |
download | DotNetOpenAuth-ade066736acbd902a7c84b174ac38a1679d52ff0.zip DotNetOpenAuth-ade066736acbd902a7c84b174ac38a1679d52ff0.tar.gz DotNetOpenAuth-ade066736acbd902a7c84b174ac38a1679d52ff0.tar.bz2 |
Added MessagePart members to custom extension sample.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/CustomExtensions/AcmeResponse.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/CustomExtensions/AcmeResponse.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/CustomExtensions/AcmeResponse.cs b/samples/DotNetOpenAuth.ApplicationBlock/CustomExtensions/AcmeResponse.cs index 38185bd..3fae7d8 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/CustomExtensions/AcmeResponse.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/CustomExtensions/AcmeResponse.cs @@ -8,13 +8,16 @@ namespace DotNetOpenAuth.ApplicationBlock.CustomExtensions { using System; using System.Collections.Generic; using System.Linq; - using System.Text; + using DotNetOpenAuth.Messaging; using DotNetOpenAuth.OpenId.Messages; [Serializable] public class AcmeResponse : IOpenIdMessageExtension { private IDictionary<string, string> extraData = new Dictionary<string, string>(); + [MessagePart] + public string FavoriteIceCream { get; set; } + #region IOpenIdMessageExtension Members /// <summary> |