BCServiceProviderTryGetValue Method  | 
 
            Gets the value associated with the specified key. 
            
 
    Namespace: 
   BlueCieloECM.InnoCielo.Meridian.Client
    Assembly:
   BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 4.0.0.0 (4.0.111.0)
Syntaxpublic bool TryGetValue(
	Guid key,
	out Object value
)
Public Function TryGetValue ( 
	key As Guid,
	<OutAttribute> ByRef value As Object
) As Boolean
Parameters
- key
 - Type: SystemGuid
            The key of the value to get.
             - value
 - Type: SystemObject
            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
Type: 
Boolean if the context contains an element with the specified key; otherwise, 
.
            
See Also