WizardStepCollection.Contains(WizardStepBase) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定 WizardStepCollection 集合是否包含一个特定的从 WizardStepBase 派生的对象。
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
参数
- wizardStep
- WizardStepBase
要在 WizardStepBase 集合中查找的从 WizardStepCollection 派生的对象。
返回
如果在 WizardStepBase 集合中找到从 WizardStepCollection 派生的对象,则为 true
;否则为 false
。
例外
wizardStep
为 null
。
注解
Contains使用 方法可确定 集合中是否WizardStepBase包含派生的对象。 此方法通常用于在执行任务(例如从集合中删除 WizardStepBase派生对象)之前测试派生对象是否存在WizardStepBase。