Castle.MonoRail.Framework.Views.Aspx.Design.ControllerActionBinderDesigner.Initialize C# (CSharp) Method

Initialize() public method

public Initialize ( IComponent component ) : void
component IComponent
return void
		public override void Initialize(IComponent component)
		{
			binder = (ControllerBinder) component;

			// The Asp.Net Web Forms Designer does not seem to
			// recognize the ISupportInitialize interface.

			((ISupportInitialize)binder).BeginInit();
			base.Initialize(component);
			((ISupportInitialize)binder).EndInit();
		}
ControllerActionBinderDesigner