ISfcPropertySet.Contains Method

Definition

Overloads

Contains(ISfcProperty)

Checks if the property with specified metadata exists

Contains(String)

Checks if the property with specified name exists

Contains<T>(String)

Checks if the property with specified name and type exists

Contains(ISfcProperty)

Checks if the property with specified metadata exists

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

Parameters

property
ISfcProperty

Property

Returns

true if succeeded

Applies to

Contains(String)

Checks if the property with specified name exists

public bool Contains (string propertyName);
abstract member Contains : string -> bool
Public Function Contains (propertyName As String) As Boolean

Parameters

propertyName
String

property name

Returns

true if succeeded

Applies to

Contains<T>(String)

Checks if the property with specified name and type exists

public bool Contains<T> (string name);
abstract member Contains : string -> bool
Public Function Contains(Of T) (name As String) As Boolean

Type Parameters

T

property type

Parameters

name
String

property name

Returns

true if succeeded

Applies to