7 writes to streamData
System (7)
sys\system\Media\SoundPlayer.cs (7)
201streamData = null; 219this.streamData = null; 360streamData = new byte[streamLen]; 429streamData = null; 444this.streamData = null; 532this.streamData = new byte[blockSize]; 542streamData = newData;
10 references to streamData
System (10)
sys\system\Media\SoundPlayer.cs (10)
285ValidateSoundData(streamData); 290UnsafeNativeMethods.PlaySound(streamData, IntPtr.Zero, NativeMethods.SND_MEMORY | NativeMethods.SND_NODEFAULT | flags); 311if (streamData != null) 361stream.Read(streamData, 0, streamLen); 534int readBytes = stream.Read(streamData, currentPos, blockSize); 539if (streamData.Length < currentPos + blockSize) { 540byte[] newData = new byte[streamData.Length * 2]; 541Array.Copy(streamData, newData, streamData.Length); 544readBytes = stream.Read(streamData, currentPos, blockSize);