Partager via


DataBus.Contains Méthode

Définition

Vérifie si la propriété existe.

Surcharges

Contains(ISfcProperty)

Vérifie si la propriété avec les métadonnées et la valeur spécifiées existe. Cette classe ne peut pas être héritée.

Contains(String)

Vérifie si la propriété avec le nom spécifié existe. Cette classe ne peut pas être héritée.

Contains<T>(String)

Indique si la propriété portant le nom spécifié existe.

Contains(ISfcProperty)

Vérifie si la propriété avec les métadonnées et la valeur spécifiées existe. Cette classe ne peut pas être héritée.

public:
 virtual bool Contains(Microsoft::SqlServer::Management::Sdk::Sfc::ISfcProperty ^ property);
public bool Contains (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty property);
abstract member Contains : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> bool
override this.Contains : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcProperty -> bool
Public Function Contains (property As ISfcProperty) As Boolean

Paramètres

property
ISfcProperty

Propriété des métadonnées et de la valeur.

Retours

True si les métadonnées et la valeur de propriété existent ; sinon, false.

Implémente

S’applique à

Contains(String)

Vérifie si la propriété avec le nom spécifié existe. Cette classe ne peut pas être héritée.

public:
 virtual bool Contains(System::String ^ propertyName);
public bool Contains (string propertyName);
abstract member Contains : string -> bool
override this.Contains : string -> bool
Public Function Contains (propertyName As String) As Boolean

Paramètres

propertyName
String

Chaîne qui représente le nom de la propriété.

Retours

true si le nom de la propriété existe ; sinon, false.

Implémente

S’applique à

Contains<T>(String)

Indique si la propriété portant le nom spécifié existe.

public:
generic <typename T>
 virtual bool Contains(System::String ^ name);
public bool Contains<T> (string name);
abstract member Contains : string -> bool
override this.Contains : string -> bool
Public Function Contains(Of T) (name As String) As Boolean

Paramètres de type

T

Type de la propriété spécifiée.

Paramètres

name
String

Chaîne qui représente un nom.

Retours

true si le nom de la propriété existe ; sinon, false.

Implémente

S’applique à