Lazy<T>.Value Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets the lazily initialized value of the current Lazy<T> instance.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)> _
Public ReadOnly Property Value As T
[DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)]
public T Value { get; }
Exceptions
Exception | Condition |
---|---|
MemberAccessException | The Lazy<T> instance is initialized to use the default constructor of the type that is being lazily initialized, and permissions to access the constructor are missing. |
MissingMemberException | The Lazy<T> instance is initialized to use the default constructor of the type that is being lazily initialized, and that type does not have a public, parameterless constructor. |
InvalidOperationException | 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.
Version Information
Silverlight
Supported in: 5, 4
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.