diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-10 11:41:47 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-10 11:41:47 -0800 |
commit | abd2769d72e52def7544ac080cee4758bfc8e592 (patch) | |
tree | 34c22abbe6260d387b1a7c851d286c5b50fcbe33 /src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs | |
parent | 5bd70111d5740844656aaed12206c9f28dd25923 (diff) | |
download | DotNetOpenAuth-abd2769d72e52def7544ac080cee4758bfc8e592.zip DotNetOpenAuth-abd2769d72e52def7544ac080cee4758bfc8e592.tar.gz DotNetOpenAuth-abd2769d72e52def7544ac080cee4758bfc8e592.tar.bz2 |
StyleCop fixes on AspNet project.
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs index 67cb8c4..fd5f847 100644 --- a/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs +++ b/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs @@ -19,7 +19,7 @@ namespace DotNetOpenAuth.AspNet.Clients { /// Initializes a new instance of the <see cref="YahooOpenIdClient"/> class. /// </summary> public YahooOpenIdClient() - : base("yahoo", "http://me.yahoo.com") {} + : base("yahoo", "http://me.yahoo.com") { } #endregion @@ -31,8 +31,7 @@ namespace DotNetOpenAuth.AspNet.Clients { /// <param name="response"> /// The response message. /// </param> - /// <returns> - /// </returns> + /// <returns>A dictionary of profile data; or null if no data is available.</returns> protected override Dictionary<string, string> GetExtraData(IAuthenticationResponse response) { FetchResponse fetchResponse = response.GetExtension<FetchResponse>(); if (fetchResponse != null) { |