12 references to Lazy
Microsoft.Build (2)
RegisteredTaskObjectCacheBase.cs (2)
24
private static readonly Lazy<ConcurrentDictionary<object, object>> s_appDomainLifetimeObjects = new
Lazy
<ConcurrentDictionary<object, object>>();
29
private Lazy<ConcurrentDictionary<object, object>> _buildLifetimeObjects = new
Lazy
<ConcurrentDictionary<object, object>>();
Microsoft.Extensions.DependencyInjection.Abstractions (1)
ActivatorUtilities.cs (1)
31
private static readonly Lazy<ConditionalWeakTable<Type, ConstructorInfoEx[]>> s_collectibleConstructorInfos =
new
();
Microsoft.VisualStudio.LanguageServices.CSharp (2)
SemanticSearch\SemanticSearchQueryExecutor.cs (2)
32
private readonly Lazy<ConcurrentStack<(DocumentId documentId, ImmutableArray<TextChange> changes)>> _lazyDocumentUpdates =
new
();
33
private readonly Lazy<ConcurrentDictionary<string, string?>> _lazyTextFileUpdates =
new
();
MSBuild (2)
RegisteredTaskObjectCacheBase.cs (2)
24
private static readonly Lazy<ConcurrentDictionary<object, object>> s_appDomainLifetimeObjects = new
Lazy
<ConcurrentDictionary<object, object>>();
29
private Lazy<ConcurrentDictionary<object, object>> _buildLifetimeObjects = new
Lazy
<ConcurrentDictionary<object, object>>();
PresentationFramework (1)
MS\Internal\WindowsRuntime\Generated\WinRT.cs (1)
195
private static Lazy<WinrtModule> _instance = new
Lazy
<WinrtModule>();
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\LazyOfTTMetadata.cs (1)
20
base
()
System.Security.Cryptography (2)
System\Security\Cryptography\DSAOpenSsl.cs (1)
20
_key = new
Lazy
<SafeDsaHandle>();
System\Security\Cryptography\RSAOpenSsl.cs (1)
22
_key = new
Lazy
<SafeEvpPKeyHandle>();
System.Xaml (1)
System\Xaml\AttachablePropertyServices.cs (1)
121
new
Lazy
<ConditionalWeakTable<object, Dictionary<AttachableMemberIdentifier, object>>>();