summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs')
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs
new file mode 100644
index 0000000..5441ce5
--- /dev/null
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs
@@ -0,0 +1,28 @@
+//-----------------------------------------------------------------------
+// <copyright file="WindowsLiveClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
+ using System;
+
+ /// <summary>
+ /// The WindowsLive client.
+ /// </summary>
+ /// <remarks>
+ /// The WindowsLive brand is being replaced by Microsoft account brand.
+ /// We keep this class for backward compatibility only.
+ /// </remarks>
+ [Obsolete("Use the MicrosoftClient class.")]
+ public sealed class WindowsLiveClient : MicrosoftClient {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="WindowsLiveClient"/> class.
+ /// </summary>
+ /// <param name="appId">The app id.</param>
+ /// <param name="appSecret">The app secret.</param>
+ public WindowsLiveClient(string appId, string appSecret) :
+ base("windowslive", appId, appSecret) {
+ }
+ }
+} \ No newline at end of file