Freigeben über


ConstraintCollection.Contains-Methode

Gibt an, ob das mit Namen angegebene Constraint-Objekt in der Auflistung vorhanden ist.

Namespace: System.Data
Assembly: System.Data (in system.data.dll)

Syntax

'Declaration
Public Function Contains ( _
    name As String _
) As Boolean
'Usage
Dim instance As ConstraintCollection
Dim name As String
Dim returnValue As Boolean

returnValue = instance.Contains(name)
public bool Contains (
    string name
)
public:
bool Contains (
    String^ name
)
public boolean Contains (
    String name
)
public function Contains (
    name : String
) : boolean

Parameter

Rückgabewert

true, wenn die Auflistung die angegebene Einschränkung enthält; andernfalls false.

Hinweise

Mit der Contains-Methode können Sie bestimmen, ob die angegebene Constraint vorhanden ist, bevor Sie versuchen, diese aus der Auflistung zu entfernen. Sie können auch mit der CanRemove-Methode bestimmen, ob eine Constraint entfernt werden kann.

Beispiel

Im folgenden Beispiel wird vor dem Löschen bestimmt, ob die angegebene Constraint in der ConstraintCollection vorhanden ist.

Public Shared Sub RemoveConstraint( _
   constraints As ConstraintCollection, constraint As Constraint)
   Try
       If constraints.Contains(constraint.ConstraintName) Then
           If constraints.CanRemove(constraint)
               constraints.Remove(constraint.ConstraintName)
           End If
       End If

   Catch e As Exception
       ' Process exception and return.
       Console.WriteLine("Exception of type {0} occurred.", _
           e.GetType().ToString())
   End Try
End Sub
public static void RemoveConstraint(
    ConstraintCollection constraints, Constraint constraint)
{
    try
    {
        if(constraints.Contains(constraint.ConstraintName)) 
        {
            if(constraints.CanRemove(constraint)) 
            {
                constraints.Remove(constraint.ConstraintName);
            }
        }
    }
    catch(Exception e) 
    {
        // Process exception and return.
        Console.WriteLine("Exception of type {0} occurred.", 
            e.GetType());
    }
}

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

ConstraintCollection-Klasse
ConstraintCollection-Member
System.Data-Namespace
Remove