diff options
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) { |