//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.OpenId.Extensions.UI { /// /// Constants used to support the UI extension. /// internal static class UIConstants { /// /// The type URI associated with this extension. /// internal const string UITypeUri = "http://specs.openid.net/extensions/ui/1.0"; /// /// The Type URI that appears in an XRDS document when the OP supports popups through the UI extension. /// internal const string PopupSupported = "http://specs.openid.net/extensions/ui/1.0/mode/popup"; /// /// The Type URI that appears in an XRDS document when the OP supports the RP /// specifying the user's preferred language through the UI extension. /// internal const string LangPrefSupported = "http://specs.openid.net/extensions/ui/1.0/lang-pref"; /// /// The Type URI that appears in the XRDS document when the OP supports the RP /// specifying the icon for the OP to display during authentication through the UI extension. /// internal const string IconSupported = "http://specs.openid.net/extensions/ui/1.0/icon"; } }