BitmapEffectCollection.Contains(BitmapEffect) 方法

定义

注意:此 API 现在已过时。 未过时的替代项为 Effect。 指示集合中是否包含指定的 BitmapEffect

public:
 virtual bool Contains(System::Windows::Media::Effects::BitmapEffect ^ value);
public bool Contains (System.Windows.Media.Effects.BitmapEffect value);
abstract member Contains : System.Windows.Media.Effects.BitmapEffect -> bool
override this.Contains : System.Windows.Media.Effects.BitmapEffect -> bool
Public Function Contains (value As BitmapEffect) As Boolean

参数

value
BitmapEffect

要在集合中查找的位图效果。

返回

如果集合包含值,则为 true;否则为 false

实现

注解

此方法执行线性搜索;因此,平均执行时间与 Count成正比。 也就是说,此方法是 O (n) 操作,其中 nCount

此方法通过调用 Object.Equals来确定相等性。

适用于

另请参阅