Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Lazy<T>.Value Property

Definition

Namespace:
System
Assemblies:
mscorlib.dll, System.Runtime.dll
Assemblies:
netstandard.dll, System.Runtime.dll
Assembly:
System.Runtime.dll
Assembly:
mscorlib.dll
Assembly:
netstandard.dll
Source:
Lazy.cs
Source:
Lazy.cs
Source:
Lazy.cs
Source:
Lazy.cs
Source:
Lazy.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets the lazily initialized value of the current Lazy<T> instance.

public:
 property T Value { T get(); };
public T Value { get; }
member this.Value : 'T
Public ReadOnly Property Value As T

Property Value

T

The lazily initialized value of the current Lazy<T> instance.

Exceptions

The Lazy<T> instance is initialized to use the parameterless constructor of the type that is being lazily initialized, and permissions to access the constructor are missing.

The Lazy<T> instance is initialized to use the parameterless constructor of the type that is being lazily initialized, and that type does not have a public, parameterless constructor.

The initialization function tries to access Value on this instance.

Remarks

If the Lazy<T>.IsValueCreated property is false, accessing the Value property forces initialization.

In addition to the exceptions that are listed, the Value property can throw any unhandled exception that is thrown by the factory method that was passed to the valueFactory parameter of the Lazy<T>(Func<T>), Lazy<T>(Func<T>, LazyThreadSafetyMode), or Lazy<T>(Func<T>, Boolean) constructor.

Applies to

See also


Feedback

Was this page helpful?