// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Diagnostics.CodeAnalysis;
namespace Microsoft.Web.WebPages.OAuth
{
///
/// Represents built in OAuth clients.
///
[SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "OAuth", Justification = "OAuth is a brand name.")]
public enum BuiltInOAuthClient
{
///
/// Represents Twitter OAuth client
///
Twitter,
///
/// Represents Facebook OAuth client
///
Facebook,
///
/// Represents LinkedIn OAuth client
///
LinkedIn,
///
/// Represents WindowsLive OAuth client
///
WindowsLive
}
}