Click or drag to resize

BCUserDBCollection<T>.TryGetValue Method (String, T)

Gets the value associated with the specified key.

Namespace:  BlueCieloECM.InnoCielo.Meridian.Server
Assembly:  BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntax
public bool TryGetValue(
	string key,
	out T value
)

Parameters

key
Type: System.String
The key to locate in the collection: either the user work list (if collection of BCUser objects) or the name of group (if collection of BCUserGroup objects) to get. of the element to get.
value
Type: T
When this method returns, contains the element associated with the specified key, if the key is found; otherwise, null.

Return Value

Type: Boolean
true if the collection contains an element with the specified key; otherwise, false.
See Also