C# Class EnterpriseWebLibrary.EnterpriseWebFramework.ControlListItem

An item for the control list.
Datei anzeigen Open project: enduracode/enterprise-web-library

Public Methods

Method Description
ControlListItem ( IEnumerable childControls, IEnumerable updateRegionSets = null ) : System.Collections.Generic

Creates a control-list item.

ControlListItem ( IEnumerable childControls, string id, IEnumerable updateRegionSets = null, IEnumerable removalUpdateRegionSets = null ) : System.Collections.Generic

Creates a control-list item.

Method Details

ControlListItem() public method

Creates a control-list item.
public ControlListItem ( IEnumerable childControls, IEnumerable updateRegionSets = null ) : System.Collections.Generic
childControls IEnumerable The item content.
updateRegionSets IEnumerable The intermediate-post-back update-region sets that this item will be a part of.
return System.Collections.Generic

ControlListItem() public method

Creates a control-list item.
public ControlListItem ( IEnumerable childControls, string id, IEnumerable updateRegionSets = null, IEnumerable removalUpdateRegionSets = null ) : System.Collections.Generic
childControls IEnumerable The item content.
id string The ID of the item. This is required if you're adding the item on an intermediate post-back or want to remove the item on an /// intermediate post-back. Do not pass null.
updateRegionSets IEnumerable The intermediate-post-back update-region sets that this item will be a part of.
removalUpdateRegionSets IEnumerable The intermediate-post-back update-region sets that this item's removal will be a part of.
return System.Collections.Generic