SqlCacheDependencyDatabaseCollection.GetKey(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回在 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
參數
- index
- Int32
要傳回的索引鍵索引。
傳回
位於指定索引的索引鍵。
範例
下列程式碼範例示範如何使用 GetKey 方法。
string thisKey = sqlCdds.GetKey(0).ToString();
Dim thisKey As String = sqlCdds.GetKey(0)
備註
如果指定的索引上沒有任何專案存在,則會傳回 Visual Basic) 中的 null 參考 Nothing
(。