<PackageReference Include="System.Runtime" Version="4.0.21-beta-23409" />

Lazy<T, TMetadata>

public class Lazy<T, TMetadata> : Lazy<T>
Provides a lazy indirect reference to an object and its associated metadata for use by the Managed Extensibility Framework.
public TMetadata Metadata { get; }

Gets the metadata associated with the referenced object.

public Lazy(Func<T> valueFactory, TMetadata metadata)

Initializes a new instance of the Lazy<T, U> class with the specified metadata that uses the specified function to get the referenced object.

public Lazy(TMetadata metadata)

Initializes a new instance of the Lazy<T, U> class with the specified metadata.

public Lazy(TMetadata metadata, bool isThreadSafe)

Initializes a new instance of the Lazy<T, U> class with the specified metadata and thread safety value.

public Lazy(Func<T> valueFactory, TMetadata metadata, bool isThreadSafe)

Initializes a new instance of the Lazy<T, U> class with the specified metadata and thread safety value that uses the specified function to get the referenced object.

public Lazy(TMetadata metadata, LazyThreadSafetyMode mode)

Initializes a new instance of the Lazy<T, U> class with the specified metadata and thread synchronization mode.

public Lazy(Func<T> valueFactory, TMetadata metadata, LazyThreadSafetyMode mode)

Initializes a new instance of the Lazy<T, U> class with the specified metadata and thread synchronization mode that uses the specified function to get the referenced object.