BitmapEffectCollection.Contains(BitmapEffect) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意:此 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) 操作,其中 n 为 Count。
此方法通过调用 Object.Equals来确定相等性。