HierarchicalDataBoundControl.ValidateDataSource(Object) Method

Definition

Verifies that the object a data-bound control binds to is one it can work with.

protected override void ValidateDataSource (object dataSource);

Parameters

dataSource
Object

An object set to the DataSource property.

Exceptions

dataSource is not null and implements neither the IHierarchicalEnumerable nor the IHierarchicalDataSource interface.

Remarks

The ValidateDataSource method is called only in the BaseDataBoundControl class's mutator (setter) for the DataSource property. The HierarchicalDataBoundControl class checks the type of the object that is set for the DataSource property to ensure that it is an instance of the IHierarchicalEnumerable or IHierarchicalDataSource interfaces.

Applies to

Produto Versões
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also