diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-01 22:55:03 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-01 23:19:26 -0800 |
commit | 198bffe042a3650095b27bed29d0f8c98bc5c926 (patch) | |
tree | bc1b2178b73d4303221ac48d320c758751abe5e9 /src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs | |
parent | 6bc4c6db7529501e8a2c0b7fa54a24fb8e4dbf42 (diff) | |
download | DotNetOpenAuth-198bffe042a3650095b27bed29d0f8c98bc5c926.zip DotNetOpenAuth-198bffe042a3650095b27bed29d0f8c98bc5c926.tar.gz DotNetOpenAuth-198bffe042a3650095b27bed29d0f8c98bc5c926.tar.bz2 |
ReSharper code cleanup to help get this AspNet contribution into StyleCop compliance.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs | 62 |
1 files changed, 26 insertions, 36 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs index 80c42b7..53c2797 100644 --- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs +++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs @@ -6,71 +6,61 @@ namespace DotNetOpenAuth.AspNet.Clients { using System; - using System.Runtime.Serialization; using System.ComponentModel; + using System.Runtime.Serialization; /// <summary> /// Contains data of a Facebook user. /// </summary> /// <remarks> - /// Technically, this class doesn't need to be public, but because we want to make it serializable - /// in medium trust, it has to be public. + /// Technically, this class doesn't need to be public, but because we want to make it serializable in medium trust, it has to be public. /// </remarks> [DataContract] [EditorBrowsable(EditorBrowsableState.Never)] public class FacebookGraphData { + #region Public Properties + /// <summary> - /// Gets or sets the id. + /// Gets or sets the birthday. /// </summary> - /// <value> - /// The id. - /// </value> - [DataMember(Name = "id")] - public string Id { get; set; } + /// <value> The birthday. </value> + [DataMember(Name = "birthday")] + public string Birthday { get; set; } /// <summary> /// Gets or sets the email. /// </summary> - /// <value> - /// The email. - /// </value> + /// <value> The email. </value> [DataMember(Name = "email")] public string Email { get; set; } /// <summary> - /// Gets or sets the name. + /// Gets or sets the gender. /// </summary> - /// <value> - /// The name. - /// </value> - [DataMember(Name = "name")] - public string Name { get; set; } + /// <value> The gender. </value> + [DataMember(Name = "gender")] + public string Gender { get; set; } /// <summary> - /// Gets or sets the link. + /// Gets or sets the id. /// </summary> - /// <value> - /// The link. - /// </value> - [DataMember(Name = "link")] - public Uri Link { get; set; } + /// <value> The id. </value> + [DataMember(Name = "id")] + public string Id { get; set; } /// <summary> - /// Gets or sets the gender. + /// Gets or sets the link. /// </summary> - /// <value> - /// The gender. - /// </value> - [DataMember(Name = "gender")] - public string Gender { get; set; } + /// <value> The link. </value> + [DataMember(Name = "link")] + public Uri Link { get; set; } /// <summary> - /// Gets or sets the birthday. + /// Gets or sets the name. /// </summary> - /// <value> - /// The birthday. - /// </value> - [DataMember(Name = "birthday")] - public string Birthday { get; set; } + /// <value> The name. </value> + [DataMember(Name = "name")] + public string Name { get; set; } + #endregion } } |