You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Allow multiple SetData calls on AppDomain (#11496)
* Allow multiple SetData calls on AppDomain
* Remove restriction from GetData and remove now-dead code Locate
* Remove LoaderOptimization check since it is not used on CoreCLR
Debug.Assert(false,"Need to handle new LoaderInformation value in AppDomain.GetData()");
622
-
returnnull;
623
-
}
585
+
LocalStore.TryGetValue(name,outdata);
624
586
}
587
+
if(data==null)
588
+
returnnull;
589
+
returndata;
625
590
}
626
591
627
592
[Obsolete("AppDomain.GetCurrentThreadId has been deprecated because it does not provide a stable Id when managed threads are running on fibers (aka lightweight threads). To get a stable identifier for a managed thread, use the ManagedThreadId property on Thread. http://go.microsoft.com/fwlink/?linkid=14202",false)]
0 commit comments