4 writes to cursorData
System.Windows.Forms (4)
winforms\Managed\System\WinForms\Cursor.cs (4)
61cursorData = (byte[])sie.Value; 91cursorData = new byte[stream.Length]; 125cursorData = new byte[f.Length]; 151cursorData = new byte[stream.Length];
12 references to cursorData
System.Windows.Forms (12)
winforms\Managed\System\WinForms\Cursor.cs (12)
62if (cursorData != null) { 63LoadPicture(new UnsafeNativeMethods.ComStreamFromDataStream(new MemoryStream(cursorData))); 92stream.Read(cursorData, 0, Convert.ToInt32(stream.Length)); // we assume that a cursor is less than 4gig big 93LoadPicture(new UnsafeNativeMethods.ComStreamFromDataStream(new MemoryStream(cursorData))); 126f.Read(cursorData, 0, Convert.ToInt32(f.Length)); // assume that a cursor is less than 4gig... 131LoadPicture(new UnsafeNativeMethods.ComStreamFromDataStream(new MemoryStream(cursorData))); 152stream.Read(cursorData, 0, Convert.ToInt32(stream.Length));// assume that a cursor is less than 4gig... 153LoadPicture(new UnsafeNativeMethods.ComStreamFromDataStream(new MemoryStream(cursorData))); 545if (cursorData != null) { 546si.AddValue("CursorData", cursorData, typeof(byte[])); 675stream.Write(cursorData, 0, cursorData.Length);