Adf.Web.Binding.WebBinder.Bind C# (CSharp) Method

Bind() public method

Binds the specified list of business objects to the specified System.Web.UI.Control or its child System.Web.UI.Control using its list of control binders.
public Bind ( object control, IEnumerable bindableObjects, bool isPostback ) : void
control object The or the child /// of which is to bind to.
bindableObjects IEnumerable The list of business objects to bind.
isPostback bool The value indicating whether this is a repeatation.
return void
        public void Bind(object control, IEnumerable bindableObjects, bool isPostback, params object[] p)
        {
            BindToList(control as Control, bindableObjects, (isPostback) ? _postbackBinders : _binders, p);
        }

Same methods

WebBinder::Bind ( object control, object bindableObject, bool isPostback ) : void