3 instantiations of ResourceLocator
mscorlib (3)
system\resources\runtimeresourceset.cs (3)
334resLocation = new ResourceLocator(dataPos, (ResourceLocator.CanCache(typeCode)) ? value : null); 369ResourceLocator resLoc = new ResourceLocator(-1, entry.Value); 386ResourceLocator resLoc = new ResourceLocator(dataPos, null);
17 references to ResourceLocator
mscorlib (17)
system\resources\resourcereader.cs (5)
89internal Dictionary<String, ResourceLocator> _resCache; 166_resCache = new Dictionary<String, ResourceLocator>(FastResourceComparer.Default); 188_resCache = new Dictionary<String, ResourceLocator>(FastResourceComparer.Default); 202internal ResourceReader(Stream stream, Dictionary<String, ResourceLocator> resCache) 1400ResourceLocator locator;
system\resources\runtimeresourceset.cs (12)
171private Dictionary<String, ResourceLocator> _resCache; 183private Dictionary<String, ResourceLocator> _caseInsensitiveTable; 195_resCache = new Dictionary<String, ResourceLocator>(FastResourceComparer.Default); 215_resCache = new Dictionary<String, ResourceLocator>(FastResourceComparer.Default); 298ResourceLocator resLocation; 334resLocation = new ResourceLocator(dataPos, (ResourceLocator.CanCache(typeCode)) ? value : null); 358_caseInsensitiveTable = new Dictionary<String, ResourceLocator>(StringComparer.OrdinalIgnoreCase); 369ResourceLocator resLoc = new ResourceLocator(-1, entry.Value); 386ResourceLocator resLoc = new ResourceLocator(dataPos, null); 415private Object ResolveResourceLocator(ResourceLocator resLocation, String key, Dictionary<String, ResourceLocator> copyOfCache, bool keyInWrongCase) 425if (!keyInWrongCase && ResourceLocator.CanCache(typeCode)) {