DomainDataSourceView.Contains Method
[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]
Returns a value that indicates whether a given item belongs to this view.
Namespace: System.Windows.Controls
Assembly: System.Windows.Controls.DomainServices (in System.Windows.Controls.DomainServices.dll)
Syntax
'Declaration
Public Function Contains ( _
item As Object _
) As Boolean
'Usage
Dim instance As DomainDataSourceView
Dim item As Object
Dim returnValue As Boolean
returnValue = instance.Contains(item)
public bool Contains(
Object item
)
public:
virtual bool Contains(
Object^ item
) sealed
abstract Contains :
item:Object -> bool
override Contains :
item:Object -> bool
public final function Contains(
item : Object
) : boolean
Parameters
- item
Type: System.Object
The item to check.
Return Value
Type: System.Boolean
true if the item belongs to this view; otherwise false.
Implements
ICollectionView.Contains(Object)