Метод SfcCollection<T, K, ParentT>.GetObjectByKey
Uses the specified key to retrieve an existing object from the collection. If a matching object is not found, the object is created, and added to the collection. Не ссылайтесь на этот элемент непосредственно из кода. Он поддерживает работу инфраструктуры SQL Server.
Пространство имен: Microsoft.SqlServer.Management.Sdk.Sfc
Сборка: Microsoft.SqlServer.Management.Sdk.Sfc (в Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Синтаксис
'Декларация
Protected MustOverride Function GetObjectByKey ( _
key As K _
) As T
'Применение
Dim key As K
Dim returnValue As T
returnValue = Me.GetObjectByKey(key)
protected abstract T GetObjectByKey(
K key
)
protected:
virtual T GetObjectByKey(
K key
) abstract
abstract GetObjectByKey :
key:'K -> 'T
protected abstract function GetObjectByKey(
key : K
) : T
Параметры
- key
Тип: K
The key that identifies the object to get.
Возвращаемое значение
Тип: T
An object from the collection.