Share via


SfcListCollection<T, K, ParentT>.Contains Method (K)

Determines whether an element is in the list collection. Do not reference this member directly in your code. It supports the SQL Server infrastructure.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Syntax

'Declaration
Public Overrides Function Contains ( _
    key As K _
) As Boolean
'Usage
Dim instance As SfcListCollection
Dim key As K
Dim returnValue As Boolean

returnValue = instance.Contains(key)
public override bool Contains(
    K key
)
public:
virtual bool Contains(
    K key
) override
abstract Contains : 
        key:'K -> bool 
override Contains : 
        key:'K -> bool 
public override function Contains(
    key : K
) : boolean

Parameters

  • key
    Type: K
    The object to locate in the list collection.

Return Value

Type: System.Boolean
true if the element is found in the list; otherwise, false.