System.IO.FileSystemWatcher.AsyncReadState.AsyncReadState C# (CSharp) Méthode

AsyncReadState() private méthode

private AsyncReadState ( int session, byte buffer, SafeFileHandle handle, ThreadPoolBoundHandle binding ) : Microsoft.Win32.SafeHandles
session int
buffer byte
handle SafeFileHandle
binding System.Threading.ThreadPoolBoundHandle
Résultat Microsoft.Win32.SafeHandles
            internal AsyncReadState(int session, byte[] buffer, SafeFileHandle handle, ThreadPoolBoundHandle binding)
            {
                Debug.Assert(buffer != null);
                Debug.Assert(handle != null);
                Debug.Assert(binding != null);

                Session = session;
                Buffer = buffer;
                DirectoryHandle = handle;
                ThreadPoolBinding = binding;
            }
FileSystemWatcher.AsyncReadState