Gets the value associated with the specified key.

Namespace: BlueCieloECM.InnoCielo.Meridian.Client
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public bool TryGetValue(
	Guid key,
	out Object value
)
Visual Basic
Public Function TryGetValue ( _
	key As Guid, _
	<OutAttribute> ByRef value As Object _
) As Boolean
Visual C++
public:
bool TryGetValue(
	Guid key, 
	[OutAttribute] Object^% value
)

Parameters

key
Type: System..::..Guid
The key of the value to get.
value
Type: System..::..Object%
When this method returns, the value parameter contains the value associated with the specified key, if the key is found; otherwise, it contains the default value for the type of the value parameter. This parameter is passed uninitialized.

Return Value

trueTruetruetrue (True in Visual Basic) if the context contains an element with the specified key; otherwise, falseFalsefalsefalse (False in Visual Basic).

See Also