C# Класс Adf.Web.Binding.HyperLinkBinder

Represents a binder for a System.Web.UI.WebControls.HyperLink. Provides methods to bind the properties of a System.Web.UI.WebControls.HyperLink to values.
Наследование: IControlBinder
Показать файл Открыть проект

Открытые методы

Метод Описание
Bind ( object control, IEnumerable values ) : void

Binds the properties of the specified System.Web.UI.WebControls.HyperLink with the specified list. Currently not being supported.

Bind ( object control, object values ) : void

Binds the properties of the specified System.Web.UI.WebControls.HyperLink with the specified array of objects. Currently not being supported.

Bind ( object control, object value, PropertyInfo pi ) : void

Binds the properties of the specified System.Web.UI.WebControls.HyperLink with the specified value.

Описание методов

Bind() публичный Метод

Binds the properties of the specified System.Web.UI.WebControls.HyperLink with the specified list. Currently not being supported.
public Bind ( object control, IEnumerable values ) : void
control object The , the /// properties of which are to bind to.
values IEnumerable The list to bind.
Результат void

Bind() публичный Метод

Binds the properties of the specified System.Web.UI.WebControls.HyperLink with the specified array of objects. Currently not being supported.
public Bind ( object control, object values ) : void
control object The , the /// properties of which are to bind to.
values object The array of objects to bind.
Результат void

Bind() публичный Метод

Binds the properties of the specified System.Web.UI.WebControls.HyperLink with the specified value.
public Bind ( object control, object value, PropertyInfo pi ) : void
control object The , the /// properties of which are to bind to.
value object The value to bind.
pi System.Reflection.PropertyInfo The Property of the /// to bind to. /// Currently not being used.
Результат void