WizardStepCollection.Contains(WizardStepBase) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the WizardStepCollection collection contains a specific WizardStepBase-derived object.
public:
bool Contains(System::Web::UI::WebControls::WizardStepBase ^ wizardStep);
public bool Contains (System.Web.UI.WebControls.WizardStepBase wizardStep);
member this.Contains : System.Web.UI.WebControls.WizardStepBase -> bool
Public Function Contains (wizardStep As WizardStepBase) As Boolean
Parameters
- wizardStep
- WizardStepBase
The WizardStepBase-derived object to find in the WizardStepCollection collection.
Returns
true
if the WizardStepBase-derived object is found in the WizardStepCollection collection; otherwise, false
.
Exceptions
wizardStep
is null
.
Remarks
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.