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