System.Internal.DebugHandleTracker.HandleType.HandleEntry.HandleEntry C# (CSharp) Method

HandleEntry() public method

public HandleEntry ( HandleEntry next, IntPtr handle ) : Microsoft.Win32
next HandleEntry
handle System.IntPtr
return Microsoft.Win32
                public HandleEntry(HandleEntry next, IntPtr handle) {
                    this.handle = handle;
                    this.next = next;

                    if (CompModSwitches.HandleLeak.Level > TraceLevel.Off) {
                        this.callStack = Environment.StackTrace;
                    }
                    else {
                        this.callStack = null;
                    }
                }
DebugHandleTracker.HandleType.HandleEntry