Castle.MonoRail.Framework.DataBindAttribute.BindInstanceErrors C# (CSharp) Method

BindInstanceErrors() protected method

Binds the instance errors.
protected BindInstanceErrors ( SmartDispatcherController controller, IDataBinder binder, object instance ) : void
controller SmartDispatcherController The controller.
binder IDataBinder The binder.
instance object The instance.
return void
		protected void BindInstanceErrors(SmartDispatcherController controller, IDataBinder binder, object instance)
		{
			if (instance != null)
			{
				controller.BoundInstanceErrors[instance] = binder.ErrorList;
			}
		}
	}