diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-11-02 08:03:13 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-11-02 08:03:13 -0700 |
commit | 9fe9e4cea965270a0d514a5271ca93ed718d3ded (patch) | |
tree | 64a4577c177b8542075e8a387f8942c91d5273fd /src/DotNetOpenAuth.OpenId/OpenId/Extensions/UI/UIUtilities.cs | |
parent | 5cefdbebc31194d9d8279c60abccdba2bece6745 (diff) | |
download | DotNetOpenAuth-9fe9e4cea965270a0d514a5271ca93ed718d3ded.zip DotNetOpenAuth-9fe9e4cea965270a0d514a5271ca93ed718d3ded.tar.gz DotNetOpenAuth-9fe9e4cea965270a0d514a5271ca93ed718d3ded.tar.bz2 |
Namespace and public api fixes to OpenID extensions after the DLL refactoring.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId/OpenId/Extensions/UI/UIUtilities.cs')
-rw-r--r-- | src/DotNetOpenAuth.OpenId/OpenId/Extensions/UI/UIUtilities.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OpenId/OpenId/Extensions/UI/UIUtilities.cs b/src/DotNetOpenAuth.OpenId/OpenId/Extensions/UI/UIUtilities.cs new file mode 100644 index 0000000..478666b --- /dev/null +++ b/src/DotNetOpenAuth.OpenId/OpenId/Extensions/UI/UIUtilities.cs @@ -0,0 +1,28 @@ +//----------------------------------------------------------------------- +// <copyright file="UIUtilities.cs" company="Andrew Arnott"> +// Copyright (c) Andrew Arnott. All rights reserved. +// </copyright> +//----------------------------------------------------------------------- + +namespace DotNetOpenAuth.OpenId.Extensions.UI { + using System; + using System.Diagnostics.Contracts; + using System.Globalization; + using DotNetOpenAuth.Messaging; + using DotNetOpenAuth.OpenId.RelyingParty; + + /// <summary> + /// Constants used in implementing support for the UI extension. + /// </summary> + public static class UIUtilities { + /// <summary> + /// The required width of the popup window the relying party creates for the provider. + /// </summary> + public const int PopupWidth = 500; // UI extension calls for 450px, but Yahoo needs 500px + + /// <summary> + /// The required height of the popup window the relying party creates for the provider. + /// </summary> + public const int PopupHeight = 500; + } +} |