8 references to IsNull
System.Windows.Forms (5)
System\Windows\Forms\Input\Cursor.cs (5)
39if (_handle.IsNull) 148return cursor.IsNull ? null : new Cursor(cursor); 160ObjectDisposedException.ThrowIf(_handle.IsNull, this); 233if (!_handle.IsNull && _freeHandle) 428if (_handle.IsNull)
System.Windows.Forms.Primitives.Tests (3)
Interop\Mocks\MockCursor.cs (3)
20if (_handle.IsNull) 28if (!_handle.IsNull && _ownHandle) 35internal HCURSOR Handle => _handle.IsNull ? throw new ObjectDisposedException(nameof(MockCursor)) : _handle;