Castle.MonoRail.Framework.Views.Aspx.BindingContext.BindingContext C# (CSharp) Method

BindingContext() private method

Initializes a new instance of the BindingContext class.
private BindingContext ( ControllerBinder binder, ActionBinding action ) : System
binder ControllerBinder The binder.
action ActionBinding The action.
return System
		internal BindingContext(ControllerBinder binder, ActionBinding action)
		{
			if (binder == null)
			{
				throw new ArgumentNullException("binder");
			}

			if (action == null)
			{
				throw new ArgumentNullException("action");
			}

			this.action = action;
			this.binder = binder;

			RegisterDefaultScopes();
		}