Class HybridHttpOrThreadLocal<T>
Helper class to store variables that should be cached either on HTTP context or on thread local storage
Inheritance
System.Object
HybridHttpOrThreadLocal<T>
Implements
System.IDisposable
Namespace: EPiServer.ServiceLocation.Internal
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
public class HybridHttpOrThreadLocal<T> : Object, IDisposable
Type Parameters
Name | Description |
---|---|
T |
Constructors
HybridHttpOrThreadLocal(Guid, Func<T>, IRequestCache)
Creates new instance of HybridHttpOrThreadLocal<T>
Declaration
public HybridHttpOrThreadLocal(Guid uniqueId, Func<T> valueFactory, IRequestCache requestCache)
Parameters
Type | Name | Description |
---|---|---|
System. |
uniqueId | The unique id for this instance |
System. |
valueFactory | The factory to get not cached value |
IRequest |
requestCache | The request cache to use |
Properties
UniqueId
The unique id for this instance
Declaration
public Guid UniqueId { get; }
Property Value
Type | Description |
---|---|
System. |
Value
Accessor to get value from cache or factory (if not cached)
Declaration
public T Value { get; }
Property Value
Type | Description |
---|---|
T |
Methods
Dispose()
Declaration
public void Dispose()
Dispose(Boolean)
Dispose implementation
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System. |
disposing | indicate if disposing |
Implements
System.IDisposable