6 writes to stream
System (6)
sys\system\Media\SoundPlayer.cs (6)
73this.stream = stream; 91stream = (Stream) entry.Value; 325stream = webResponse.GetResponseStream(); 418stream = null; 442this.stream = stream; 529stream = webResponse.GetResponseStream();
17 references to stream
System (17)
sys\system\Media\SoundPlayer.cs (17)
94if (stream.CanSeek) { 95stream.Seek(0, SeekOrigin.Begin); 149return this.stream; 152if (stream == value) 184Debug.Assert(stream == null, "we can't have a stream and a path at the same time"); 233Debug.Assert(stream == null, "we can't have a stream and a path at the same time"); 249if (String.IsNullOrEmpty(soundLocation) && stream == null) { 315if (uri != null && !uri.IsFile && stream == null) { 328if (stream.CanSeek) { 357if (loadSync && stream.CanSeek) { 358int streamLen = (int) stream.Length; 361stream.Read(streamData, 0, streamLen); 524if (uri != null && !uri.IsFile && stream == null) { 534int readBytes = stream.Read(streamData, currentPos, blockSize); 544readBytes = stream.Read(streamData, currentPos, blockSize); 715if (this.stream != null) { 716info.AddValue("Stream", this.stream);