3 writes to innerStream
System.IO.Log (3)
System\IO\Log\LogLogRecord.cs (3)
112
this.
innerStream
= innerStream;
227
this.
innerStream
= new MemoryStream(newData);
258
this.
innerStream
= null;
19 references to innerStream
System.IO.Log (19)
System\IO\Log\LogLogRecord.cs (19)
127
return this.
innerStream
.Length;
139
return this.
innerStream
.Position;
148
this.
innerStream
.Position = value;
157
if (this.
innerStream
!= null)
159
this.
innerStream
.Flush();
169
return this.
innerStream
.Read(buffer, offset, count);
178
return this.
innerStream
.Seek(offset, origin);
189
if (this.
innerStream
== null)
201
if (this.
innerStream
== null)
215
if (this.
innerStream
!= null)
217
long originalPosition = this.
innerStream
.Position;
222
byte[] newData = new byte[this.
innerStream
.Length];
223
this.
innerStream
.Position = 0;
224
this.
innerStream
.Read(newData, 0, newData.Length);
226
Stream oldStream = this.
innerStream
;
232
this.
innerStream
.Position = originalPosition;
255
if (this.
innerStream
!= null)
257
this.
innerStream
.Close();
271
if (this.
innerStream
== null)