Lazy<T> Constructor (LazyThreadSafetyMode)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the Lazy<T> class that uses the default constructor of T and the specified thread safety mode.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- mode
- Type: System.Threading.LazyThreadSafetyMode
One of the enumeration values that specifies the thread safety mode.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | mode contains an invalid value. |
The thread safety mode of a Lazy<T> instance describes the behavior when multiple threads try to initialize the Lazy<T> instance.
A Lazy<T> instance that is created by using this constructor does not cache exceptions. For more information, see the System.Threading.LazyThreadSafetyMode enumeration.