C# Class Adf.Web.Binding.ListBoxPersister

Represents a persister for a System.Web.UI.WebControls.DropDownList. Provides method to persist the selected value of a System.Web.UI.WebControls.DropDownList.
Inheritance: IControlPersister
Datei anzeigen Open project: NLADP/ADF

Public Methods

Method Description
Persist ( object bindableObject, PropertyInfo pi, object control ) : void

Persists the selected value of the specified System.Web.UI.WebControls.DropDownList to the specified property of the specified object.

Method Details

Persist() public method

Persists the selected value of the specified System.Web.UI.WebControls.DropDownList to the specified property of the specified object.
public Persist ( object bindableObject, PropertyInfo pi, object control ) : void
bindableObject object The object where to persist.
pi System.Reflection.PropertyInfo The property of the object where to persist.
control object The , /// the selected value of which is to persist.
return void