Interface ILazyDependencyLoader<T>
Represents a lazy dependency loader.
public interface ILazyDependencyLoader<T>
Type Parameters
T
Type of dependency to load.
Properties
IsLoaded
Gets whether the dependency is loaded.
bool IsLoaded { get; }
Property Value
Value
Gets the value of the dependency.
T Value { get; }
Property Value
- T