Propriedade do RDL SfcReferenceCollection<K, T, S>.Item
Gets the element associated with the specified key.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (em Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Sintaxe
'Declaração
Public ReadOnly Default Property Item ( _
key As K _
) As T
Get
'Uso
Dim instance As SfcReferenceCollection
Dim key As K
Dim value As T
value = instance(key)
public T this[
K key
] { get; }
public:
virtual property T default[K key] {
T get (K key) sealed;
}
abstract Item : 'T
override Item : 'T
JScript dá suporte ao uso de propriedades indexadas, mas não à declaração de propriedades novas.
Parâmetros
- key
Tipo: K
The key of the value to get.
Valor da propriedade
Tipo: T
The element associated with the specified key.
Implementa
IReadOnlyDictionary<K, T>.Item[K]