Summary
    Attempts to get a typed cached value from a document key.
    
		- Assembly
- Wyam.Common .dll 
- Namespace
- Wyam.Common .Caching 
- Containing Type
- IExecutionCache
Syntax
bool TryGetValue<TValue>(IDocument document, out TValue value)Type Parameters
| Name | Description | 
|---|---|
| TValue | The type of the cached value. | 
Parameters
| Name | Type | Description | 
|---|---|---|
| document | IDocument | The document key. | 
| value | TValue | The cached value. | 
Return Value
| Type | Description | 
|---|---|
| bool | truefor a cache hit,falsefor a cache miss. | 
