IPropertiesDictionaryTryGetValueT Method (String, T) |
IT Hit User File System
Tries to get value associated with the specified key.
Namespace:
ITHit.FileSystem
Assembly:
ITHit.FileSystem (in ITHit.FileSystem.dll) Version: 9.0.27334.0-Beta
Syntaxbool TryGetValue<T>(
string key,
out T value
)
Function TryGetValue(Of T) (
key As String,
<OutAttribute> ByRef value As T
) As Boolean
generic<typename T>
bool TryGetValue(
String^ key,
[OutAttribute] T% value
)
abstract TryGetValue :
key : string *
value : 'T byref -> bool
Parameters
- key
- Type: SystemString
The key whose value to get. - value
- Type: T
Value stored under the key.
Type Parameters
- T
Return Value
Type:
BooleanTrue if nethod completed succesefully, false - otherwise.
RemarksIf data is saved, this method reads directly from underlying local storage.
See Also