#237 Make shared CLR code internal

This commit is contained in:
Chris R 2016-08-23 11:56:37 -07:00
parent fc6452235e
commit 8fe007e995
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
using System; using System;
namespace System.Threading namespace System.Threading
{ {
public sealed class PreAllocatedOverlapped : IDisposable, IDeferredDisposable internal sealed class PreAllocatedOverlapped : IDisposable, IDeferredDisposable
{ {
internal readonly ThreadPoolBoundHandleOverlapped _overlapped; internal readonly ThreadPoolBoundHandleOverlapped _overlapped;
private DeferredDisposableLifetime<PreAllocatedOverlapped> _lifetime; private DeferredDisposableLifetime<PreAllocatedOverlapped> _lifetime;

View File

@ -3,7 +3,7 @@ using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace System.Threading namespace System.Threading
{ {
public sealed class ThreadPoolBoundHandle : IDisposable internal sealed class ThreadPoolBoundHandle : IDisposable
{ {
private readonly SafeHandle _handle; private readonly SafeHandle _handle;
private bool _isDisposed; private bool _isDisposed;