FileCacheTryGetValue Method |
Gets the entry associated with this key if present.
Namespace: GroupDocs.Conversion.CachingAssembly: GroupDocs.Conversion (in GroupDocs.Conversion.dll) Version: 22.4.0.0 (22.4)
Syntaxpublic bool TryGetValue(
string key,
out Object value
)
Public Function TryGetValue (
key As String,
<OutAttribute> ByRef value As Object
) As Boolean
public:
virtual bool TryGetValue(
String^ key,
[OutAttribute] Object^% value
) sealed
abstract TryGetValue :
key : string *
value : Object byref -> bool
override TryGetValue :
key : string *
value : Object byref -> bool
Parameters
- key
- Type: SystemString
A key identifying the requested entry. - value
- Type: SystemObject
The located value or null.
Return Value
Type:
Boolean if the key was found.
Implements
ICacheTryGetValue(String, Object)
See Also