38 references to ConcurrentDictionary
mscorlib (6)
system\diagnostics\eventing\eventsource.cs (2)
5614
m_activeActivities = new
ConcurrentDictionary
<Guid, int>();
5615
m_rootActiveActivities = new
ConcurrentDictionary
<Guid, Tuple<Guid, int>>();
system\runtime\serialization\formatters\binary\binaryformatter.cs (1)
54
private static Lazy<ConcurrentDictionary<Type, TypeInformation>> concurrentTypeNameCache = new Lazy<ConcurrentDictionary<Type, TypeInformation>>(() => new
ConcurrentDictionary
<Type, TypeInformation>());
system\runtime\serialization\formatters\binary\binaryutilclasses.cs (1)
560
static System.Collections.Concurrent.ConcurrentDictionary<string, object> ht = new System.Collections.Concurrent.
ConcurrentDictionary
<string, object>();
system\runtime\serialization\formatterservices.cs (1)
38
internal static ConcurrentDictionary<MemberHolder, MemberInfo[]> m_MemberInfoTable = new
ConcurrentDictionary
<MemberHolder, MemberInfo[]>();
system\threading\Tasks\ConcurrentExclusiveSchedulerPair.cs (1)
40
private readonly ConcurrentDictionary<int, ProcessingMode> m_threadProcessingMapping = new
ConcurrentDictionary
<int, ProcessingMode>();
System (1)
net\System\Net\_AuthenticationManager2.cs (1)
326
this.moduleList = new
ConcurrentDictionary
<string, IAuthenticationModule>();
System.Activities (1)
System\Activities\XamlIntegration\TypeConverterBase.cs (1)
21
return new
ConcurrentDictionary
<Type, TypeConverterHelper>();
System.ComponentModel.DataAnnotations (3)
DataAnnotations\AssociatedMetadataTypeTypeDescriptor.cs (3)
83
private static readonly ConcurrentDictionary<Type, Type> _metadataTypeCache = new
ConcurrentDictionary
<Type, Type>();
86
private static readonly ConcurrentDictionary<Tuple<Type, string>, Attribute[]> _typeMemberCache = new
ConcurrentDictionary
<Tuple<Type, string>, Attribute[]>();
89
private static readonly ConcurrentDictionary<Tuple<Type, Type>, bool> _validatedMetadataTypeCache = new
ConcurrentDictionary
<Tuple<Type, Type>, bool>();
System.Data (4)
fx\src\data\System\Data\Common\DataStorage.cs (1)
132
private readonly static ConcurrentDictionary<Type, Tuple<bool, bool, bool, bool>> _typeImplementsInterface = new
ConcurrentDictionary
<Type, Tuple<bool, bool, bool, bool>>();
fx\src\data\System\Data\ProviderBase\DbConnectionPoolGroup.cs (3)
65
_poolCollection = new
ConcurrentDictionary
<DbConnectionPoolIdentity, DbConnectionPool>();
130
_poolCollection = new
ConcurrentDictionary
<DbConnectionPoolIdentity, DbConnectionPool>();
250
var newPoolCollection = new
ConcurrentDictionary
<DbConnectionPoolIdentity, DbConnectionPool>();
System.Data.Entity (2)
System\Data\Common\QueryCache\CompiledQueryCacheEntry.cs (1)
46
_plans = new
ConcurrentDictionary
<string,ObjectQueryExecutionPlan>();
System\Data\Mapping\StorageMappingItemCollection.cs (1)
64
new
ConcurrentDictionary
<Tuple<EntitySetBase, EntityTypeBase, InterestingMembersKind>, ReadOnlyCollection<EdmMember>>();
System.Web (16)
Compilation\BuildProvidersCompiler.cs (2)
772
ConcurrentDictionary<AssemblyBuilder, CompilerResults> buildResults = new
ConcurrentDictionary
<AssemblyBuilder, CompilerResults>();
773
ConcurrentDictionary<AssemblyBuilder, CompilerResults> buildErrors = new
ConcurrentDictionary
<AssemblyBuilder, CompilerResults>();
Configuration\MTConfigUtil.cs (2)
16
new
ConcurrentDictionary
<Tuple<Type, VirtualPath>, ConfigurationSection>();
19
new
ConcurrentDictionary
<VirtualPath, Configuration>();
Hosting\CustomRuntimeManager.cs (1)
17
private readonly ConcurrentDictionary<CustomRuntimeRegistration, object> _activeRegistrations = new
ConcurrentDictionary
<CustomRuntimeRegistration, object>();
Hosting\SuspendManager.cs (1)
21
private readonly ConcurrentDictionary<ISuspendibleRegisteredObject, object> _registeredObjects = new
ConcurrentDictionary
<ISuspendibleRegisteredObject, object>();
State\SessionStateModule.cs (1)
159
private static ConcurrentDictionary<string, int> s_queuedRequestsNumPerSession = new
ConcurrentDictionary
<string, int>();
UI\DataBinder.cs (1)
27
private static readonly ConcurrentDictionary<Type, PropertyDescriptorCollection> propertyCache = new
ConcurrentDictionary
<Type, PropertyDescriptorCollection>();
UI\TargetFrameworkUtil.cs (8)
30
_events = new
ConcurrentDictionary
<string, EventInfo>();
38
_fields = new
ConcurrentDictionary
<Tuple<string, int>, FieldInfo>();
46
_properties = new
ConcurrentDictionary
<Tuple<string, int>, PropertyInfo>();
53
private static ConcurrentDictionary<Type, MemberCache> s_memberCache = new
ConcurrentDictionary
<Type, MemberCache>();
58
new
ConcurrentDictionary
<Type, PropertyDescriptorCollection>();
60
new
ConcurrentDictionary
<object, PropertyDescriptorCollection>();
62
new
ConcurrentDictionary
<Type, EventDescriptorCollection>();
64
private static ConcurrentDictionary<Type, bool> s_isFrameworkType = new
ConcurrentDictionary
<Type, bool>();
System.Web.DynamicData (2)
DynamicData\MetaModel.cs (1)
34
private readonly static ConcurrentDictionary<Type, bool> s_registeredMetadataTypes = new
ConcurrentDictionary
<Type, bool>();
UI\DataControlExtensions.cs (1)
8
private readonly static ConcurrentDictionary<Type, MetaTable> s_MetaTableCache = new
ConcurrentDictionary
<Type, MetaTable>();
System.Web.Extensions (2)
UI\AssemblyCache.cs (1)
34
new
ConcurrentDictionary
<Assembly, AjaxFrameworkAssemblyAttribute>();
UI\ScriptResourceMapping.cs (1)
11
new
ConcurrentDictionary
<Tuple<String, Assembly>, ScriptResourceDefinition>();
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripManager.cs (1)
36
private static ConcurrentDictionary<int, Font> defaultFontCache = new
ConcurrentDictionary
<int, Font>();