Metodo PropertyCollection.Contains
Determines whether the element specified by key exists in the collection.
Spazio dei nomi Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
Public Function Contains ( _
propertyName As String _
) As Boolean
'Utilizzo
Dim instance As PropertyCollection
Dim propertyName As String
Dim returnValue As Boolean
returnValue = instance.Contains(propertyName)
public bool Contains(
string propertyName
)
public:
bool Contains(
String^ propertyName
)
member Contains :
propertyName:string -> bool
public function Contains(
propertyName : String
) : boolean
Parametri
- propertyName
Tipo: System.String
A String value that specifies the key value to be verified.
Valore restituito
Tipo: System.Boolean
A Boolean value that specifies whether the collection contains the specified key.If True, the key exists in the collection.If False, the key does not exist in the collection
Osservazioni
This forces load from the server if the collection has not been initialized yet.
Esempi
Vedere anche
Riferimento
Spazio dei nomi Microsoft.SqlServer.Management.Smo