diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 08:05:05 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-05-26 08:05:05 -0700 |
commit | 41fd4b0f54b8080471e35822b0d8cccd7f621b3b (patch) | |
tree | 974617c64a945ad84190271881a8c49fa8efe4c4 /samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs | |
parent | 2a4da5e544a22d30d5b54a2696194d814d9a442f (diff) | |
download | DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.zip DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.gz DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.bz2 |
Fixes StyleCop messages.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs index 925c616..b479cc0 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/IOAuth2Graph.cs @@ -4,7 +4,27 @@ using System.Linq; using System.Text; - public enum HumanGender { Unknown, Male, Female, Other } + public enum HumanGender { + /// <summary> + /// The gender is unknown. + /// </summary> + Unknown, + + /// <summary> + /// The gender is male. + /// </summary> + Male, + + /// <summary> + /// The gender is female. + /// </summary> + Female, + + /// <summary> + /// Hmmmm... What could this be? + /// </summary> + Other, + } public interface IOAuth2Graph { string Id { get; } |