diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-29 20:15:51 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-12-29 20:15:51 -0800 |
commit | 3d61acf448c8a06b98fb8cc1ec16692258574002 (patch) | |
tree | 4c04c762a5bf6c2d2ec15e9c210c2ec84c3af185 /src | |
parent | 905c1e662649ae06027fa47ca12590ef9ec25354 (diff) | |
download | DotNetOpenAuth-3d61acf448c8a06b98fb8cc1ec16692258574002.zip DotNetOpenAuth-3d61acf448c8a06b98fb8cc1ec16692258574002.tar.gz DotNetOpenAuth-3d61acf448c8a06b98fb8cc1ec16692258574002.tar.bz2 |
Adds the missing attributes on OpenIdRelyingPartyControlBase that make its Extensions property settable inside an ASPX page.
Closes #6
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs | 1 | ||||
-rw-r--r-- | src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdSelector.cs | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs index 380417f..62f6554 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs @@ -76,6 +76,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// A common base class for OpenID Relying Party controls. /// </summary> [DefaultProperty("Identifier"), ValidationProperty("Identifier")] + [ParseChildren(true), PersistChildren(false)] public abstract class OpenIdRelyingPartyControlBase : Control, IPostBackEventHandler, IDisposable { /// <summary> /// The manifest resource name of the javascript file to include on the hosting page. diff --git a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdSelector.cs b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdSelector.cs index b7a54eb..538e181 100644 --- a/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdSelector.cs +++ b/src/DotNetOpenAuth/OpenId/RelyingParty/OpenIdSelector.cs @@ -29,7 +29,6 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { /// An ASP.NET control that provides a user-friendly way of logging into a web site using OpenID. /// </summary> [ToolboxData("<{0}:OpenIdSelector runat=\"server\"></{0}:OpenIdSelector>")] - [ParseChildren(true), PersistChildren(false)] public class OpenIdSelector : OpenIdRelyingPartyAjaxControlBase { /// <summary> /// The name of the manifest stream containing the OpenIdButtonPanel.js file. |