SqlCacheDependencyDatabaseCollection.GetKey(Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Retourne la clé pour l'élément situé à l'index spécifié dans la SqlCacheDependencyDatabaseCollection.
public:
System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String
Paramètres
- index
- Int32
Index de la clé à retourner.
Retours
Clé à l'index spécifié.
Exemples
L'exemple de code suivant montre comment utiliser la méthode GetKey.
string thisKey = sqlCdds.GetKey(0).ToString();
Dim thisKey As String = sqlCdds.GetKey(0)
Remarques
Une référence null (Nothing
en Visual Basic) est retournée si aucun élément n’existe à l’index spécifié.