Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Lazy<T>::Value Property

 

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

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
property T Value {
	T get();
}

Property Value

Type: T

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

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.

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.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft