| IDataItemTryGetValueT Method  | 
IT Hit User File System 
            Tries to get value.
            
 
    Namespace: 
   ITHit.FileSystem
    Assembly:
   ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 9.0.29552.0
 Syntax
Syntaxbool TryGetValue<T>(
	out T value
)
Function TryGetValue(Of T) ( 
	<OutAttribute> ByRef value As T
) As Boolean
generic<typename T>
bool TryGetValue(
	[OutAttribute] T% value
)
abstract TryGetValue : 
        value : 'T byref -> bool 
Parameters
- value
- Type: T
 Value.
Type Parameters
- T
- The value will be automatically deserialized to the type specified by this type-parameter.
Return Value
Type: 
BooleanTrue if the velue was deserialized successfully, false - otherwise.
 See Also
See Also