diff --git a/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs b/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs index e740eed69ed51..38514ce521abc 100644 --- a/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs +++ b/src/libraries/System.Runtime.Caching/src/System/Runtime/Caching/MemoryCache.cs @@ -39,7 +39,6 @@ public class MemoryCache : ObjectCache, IEnumerable, IDisposable private bool _useMemoryCacheManager = true; private bool _throwOnDisposed; private EventHandler _onAppDomainUnload; - private UnhandledExceptionEventHandler _onUnhandledException; #if NETCOREAPP [UnsupportedOSPlatformGuard("browser")] private static bool _countersSupported => !OperatingSystem.IsBrowser(); @@ -219,9 +218,6 @@ private void InitDisposableMembers(NameValueCollection config) EventHandler onAppDomainUnload = new EventHandler(OnAppDomainUnload); appDomain.DomainUnload += onAppDomainUnload; _onAppDomainUnload = onAppDomainUnload; - UnhandledExceptionEventHandler onUnhandledException = new UnhandledExceptionEventHandler(OnUnhandledException); - appDomain.UnhandledException += onUnhandledException; - _onUnhandledException = onUnhandledException; dispose = false; } finally @@ -238,16 +234,6 @@ private void OnAppDomainUnload(object unusedObject, EventArgs unusedEventArgs) Dispose(); } - private void OnUnhandledException(object sender, UnhandledExceptionEventArgs eventArgs) - { - // if the CLR is terminating, dispose the cache. - // This will dispose the perf counters - if (eventArgs.IsTerminating) - { - Dispose(); - } - } - private static void ValidatePolicy(CacheItemPolicy policy) { if (policy.AbsoluteExpiration != ObjectCache.InfiniteAbsoluteExpiration @@ -500,10 +486,6 @@ private void DisposeSafeCritical() { appDomain.DomainUnload -= _onAppDomainUnload; } - if (_onUnhandledException != null) - { - appDomain.UnhandledException -= _onUnhandledException; - } } private object GetInternal(string key, string regionName)