1 instantiation of LocalDataStoreSlot
mscorlib (1)
system\_localdatastoremgr.cs (1)
195slot = new LocalDataStoreSlot(this, availableSlot, checked(m_CookieGenerator++));
32 references to LocalDataStoreSlot
mscorlib (23)
system\_localdatastore.cs (3)
117public Object GetData(LocalDataStoreSlot slot) 152public void SetData(LocalDataStoreSlot slot, Object data) 203private LocalDataStoreElement PopulateElement(LocalDataStoreSlot slot)
system\_localdatastoremgr.cs (9)
144public LocalDataStoreSlot AllocateDataSlot() 151LocalDataStoreSlot slot; 214public LocalDataStoreSlot AllocateNamedDataSlot(String name) 222LocalDataStoreSlot slot = AllocateDataSlot(); 241public LocalDataStoreSlot GetNamedDataSlot(String name) 249LocalDataStoreSlot slot = m_KeyToSlotMap.GetValueOrDefault(name); 319public void ValidateSlot(LocalDataStoreSlot slot) 338private Dictionary<String, LocalDataStoreSlot> m_KeyToSlotMap = new Dictionary<String, LocalDataStoreSlot>();
system\runtime\remoting\context.cs (5)
764public static LocalDataStoreSlot AllocateDataSlot() 770public static LocalDataStoreSlot AllocateNamedDataSlot(String name) 776public static LocalDataStoreSlot GetNamedDataSlot(String name) 789public static void SetData(LocalDataStoreSlot slot, Object data) 796public static Object GetData(LocalDataStoreSlot slot)
system\security\accesscontrol\privilege.cs (1)
40private static LocalDataStoreSlot tlsSlot = Thread.AllocateDataSlot();
system\threading\thread.cs (5)
1027public static LocalDataStoreSlot AllocateDataSlot() 1038public static LocalDataStoreSlot AllocateNamedDataSlot(String name) 1049public static LocalDataStoreSlot GetNamedDataSlot(String name) 1070public static Object GetData(LocalDataStoreSlot slot) 1088public static void SetData(LocalDataStoreSlot slot, Object data)
PresentationCore (2)
Core\CSharp\System\Windows\Interop\HwndSource.cs (1)
3248private static System.LocalDataStoreSlot _threadSlot;
Core\CSharp\System\Windows\OleServicesContext.cs (1)
361private static readonly LocalDataStoreSlot _threadDataSlot = Thread.AllocateDataSlot();
PresentationFramework (2)
src\Framework\System\Windows\Controls\Grid.cs (1)
3355private static readonly LocalDataStoreSlot s_tempDefinitionsDataSlot = Thread.AllocateDataSlot();
src\Framework\System\windows\Documents\TextEditor.cs (1)
2111private static LocalDataStoreSlot _threadLocalStoreSlot = Thread.AllocateDataSlot();
System (1)
regex\system\text\regularexpressions\RegexCompiler.cs (1)
3066private static LocalDataStoreSlot _moduleSlot = Thread.AllocateDataSlot();
System.Data.Linq (1)
SqlClient\Reader\ObjectReaderCompiler.cs (1)
149static LocalDataStoreSlot cacheSlot = Thread.AllocateDataSlot();
System.Drawing (2)
commonui\System\Drawing\Advanced\Gdiplus.cs (2)
110LocalDataStoreSlot slot = Thread.GetNamedDataSlot(ThreadDataSlotName); 125LocalDataStoreSlot slot = Thread.GetNamedDataSlot(ThreadDataSlotName);
WindowsBase (1)
Base\System\Windows\Interop\ComponentDispatcher.cs (1)
390private static System.LocalDataStoreSlot _threadSlot;