WizardStepCollection::Contains Method (WizardStepBase^)

 

Determines whether the WizardStepCollection collection contains a specific WizardStepBase-derived object.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
bool Contains(
	WizardStepBase^ wizardStep
)

Parameters

wizardStep
Type: System.Web.UI.WebControls::WizardStepBase^

The WizardStepBase-derived object to find in the WizardStepCollection collection.

Return Value

Type: System::Boolean

true if the WizardStepBase-derived object is found in the WizardStepCollection collection; otherwise, false.

Exception Condition
ArgumentNullException

wizardStep is null.

Use the Contains method to determine whether a WizardStepBase-derived object is contained in the collection. This method is commonly used to test for the existence of a WizardStepBase-derived object before performing a task, such as removing a WizardStepBase-derived object from the collection.

.NET Framework
Available since 2.0
Return to top
Show: