IExecutionCache.

TryGetValue(string, Object) Method

Summary

Attempts to get a cached value from a string key.
Assembly
Wyam.Common.dll
Namespace
Wyam.Common.Caching
Containing Type
IExecutionCache

Syntax

bool TryGetValue(string key, out Object value)

Parameters

Name Type Description
key string The string key.
value Object The cached value.

Return Value

Type Description
bool true for a cache hit, false for a cache miss.
GitHub