2 writes to _priorWindowProcHandle
System.Windows.Forms (2)
System\Windows\Forms\NativeWindow.cs (2)
303_priorWindowProcHandle = (void*)PInvokeCore.GetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_WNDPROC); 725window._nextWindow._priorWindowProcHandle = window._priorWindowProcHandle;
7 references to _priorWindowProcHandle
System.Windows.Forms (7)
System\Windows\Forms\NativeWindow.cs (7)
304Debug.Assert(_priorWindowProcHandle is not null); 315Debug.Assert(_priorWindowProcHandle != _windowProcHandle, "Uh oh! Subclassed ourselves!!!"); 501if (_priorWindowProcHandle == null) 512_priorWindowProcHandle, 725window._nextWindow._priorWindowProcHandle = window._priorWindowProcHandle; 855PInvokeCore.SetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_WNDPROC, (nint)_priorWindowProcHandle); 889if (_nextWindow is null || _nextWindow._priorWindowProcHandle != _windowProcHandle)