blob: 5441ce501fd4ff909006a3e0a24f574f5c41b867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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) {
}
}
}
|