summaryrefslogtreecommitdiffstats
path: root/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-05-26 08:05:05 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-05-26 08:05:05 -0700
commit41fd4b0f54b8080471e35822b0d8cccd7f621b3b (patch)
tree974617c64a945ad84190271881a8c49fa8efe4c4 /samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs
parent2a4da5e544a22d30d5b54a2696194d814d9a442f (diff)
downloadDotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.zip
DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.gz
DotNetOpenAuth-41fd4b0f54b8080471e35822b0d8cccd7f621b3b.tar.bz2
Fixes StyleCop messages.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs')
-rw-r--r--samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs
index 69cfb22..44adcaf 100644
--- a/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs
+++ b/samples/DotNetOpenAuth.ApplicationBlock/OAuth2/Google/GoogleGraph.cs
@@ -20,61 +20,61 @@ namespace DotNetOpenAuth.ApplicationBlock {
private static DataContractJsonSerializer jsonSerializer = new DataContractJsonSerializer(typeof(GoogleGraph));
/// <summary>
- /// Gets the value of this field is an immutable identifier for the logged-in user, and may be used when creating and managing user sessions in your application. This identifier is the same regardless of the client_id. This provides the ability to correlate profile information across multiple applications in the same organization. The value of this field is the same as the value of the userid field returned by the TokenInfo endpoint.
+ /// Gets or sets the value of this field is an immutable identifier for the logged-in user, and may be used when creating and managing user sessions in your application. This identifier is the same regardless of the client_id. This provides the ability to correlate profile information across multiple applications in the same organization. The value of this field is the same as the value of the userid field returned by the TokenInfo endpoint.
/// </summary>
[DataMember(Name = "id", IsRequired = true)]
public string Id { get; set; }
/// <summary>
- /// Gets the email address of the logged in user
+ /// Gets or sets the email address of the logged in user
/// </summary>
[DataMember(Name = "email")]
public string Email { get; set; }
/// <summary>
- /// Gets a flag that indicates whether or not Google has been able to verify the email address.
+ /// Gets or sets a flag that indicates whether or not Google has been able to verify the email address.
/// </summary>
[DataMember(Name = "verified_email")]
public bool? VerifiedEmail { get; set; }
/// <summary>
- /// Gets the full name of the logged in user
+ /// Gets or sets the full name of the logged in user
/// </summary>
[DataMember(Name = "name", IsRequired = true)]
public string Name { get; set; }
/// <summary>
- /// Gets the first name of the logged in user
+ /// Gets or sets the first name of the logged in user
/// </summary>
[DataMember(Name = "given_name")]
public string GivenName { get; set; }
/// <summary>
- /// Gets the last name of the logged in user
+ /// Gets or sets the last name of the logged in user
/// </summary>
[DataMember(Name = "family_name")]
public string FamilyName { get; set; }
/// <summary>
- /// Gets the URL to the user's profile picture. If the user has no public profile, this field is not included.
+ /// Gets or sets the URL to the user's profile picture. If the user has no public profile, this field is not included.
/// </summary>
[DataMember(Name = "picture")]
public Uri Picture { get; set; }
/// <summary>
- /// Gets the user's registered locale. If the user has no public profile, this field is not included.
+ /// Gets or sets the user's registered locale. If the user has no public profile, this field is not included.
/// </summary>
[DataMember(Name = "locale")]
public string Locale { get; set; }
/// <summary>
- /// Gets the default timezone of the logged in user
+ /// Gets or sets the default timezone of the logged in user
/// </summary>
[DataMember(Name = "timezone")]
public string Timezone { get; set; }
/// <summary>
- /// Gets the gender of the logged in user (other|female|male)
+ /// Gets or sets the gender of the logged in user (other|female|male)
/// </summary>
[DataMember(Name = "gender")]
public string Gender { get; set; }