Share via


ReferenceContext.TryGetValue<T> Method

Lookup the value associated with a specified key in the context.

Namespace:  Microsoft.VisualStudio.Modeling.Integration
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Integration.11.0 (in Microsoft.VisualStudio.Modeling.Sdk.Integration.11.0.dll)

Syntax

'Declaration
Public Function TryGetValue(Of T) ( _
    key As Object, _
    <OutAttribute> ByRef value As T _
) As Boolean
public bool TryGetValue<T>(
    Object key,
    out T value
)
public:
generic<typename T>
bool TryGetValue(
    Object^ key, 
    [OutAttribute] T% value
)
member TryGetValue : 
        key:Object * 
        value:'T byref -> bool
JScript does not support generic types or methods.

Type Parameters

  • T
    The expected type of the value associated with the specified key

Parameters

  • key
    Type: Object

    The key to lookup in the context

  • value
    Type: T%

    Receives the value associated with the specified key, or the default value for T if the key is not found

Return Value

Type: Boolean
Whether or not the context contained a value with the specified key.

.NET Framework Security

See Also

Reference

ReferenceContext Class

Microsoft.VisualStudio.Modeling.Integration Namespace