7 writes to ByteLen_Prop
mscorlib (7)
system\io\streamreader.cs (7)
958
ByteLen_Prop
= 0;
1001
ByteLen_Prop
+= len;
1008
ByteLen_Prop
= await tmpStream.ReadAsync(tmpByteBuffer, 0, tmpByteBuffer.Length).ConfigureAwait(false);
1193
ByteLen_Prop
= 0;
1208
BytePos_Prop = 0;
ByteLen_Prop
= 0;
1214
ByteLen_Prop
+= len;
1218
ByteLen_Prop
= await tmpStream.ReadAsync(tmpByteBuffer, 0, tmpByteBuffer.Length).ConfigureAwait(false);
16 references to ByteLen_Prop
mscorlib (16)
system\io\streamreader.cs (16)
979
if (
ByteLen_Prop
> 0)
983
n = Decoder_Prop.GetChars(tmpByteBuffer, 0,
ByteLen_Prop
, buffer, index + charsRead);
988
n = Decoder_Prop.GetChars(tmpByteBuffer, 0,
ByteLen_Prop
, CharBuffer_Prop, 0);
1010
Contract.Assert(
ByteLen_Prop
>= 0, "Stream.Read returned a negative number! This is a bug in your stream class.");
1012
if (
ByteLen_Prop
== 0) // EOF
1022
IsBlocked_Prop = (
ByteLen_Prop
< tmpByteBuffer.Length);
1033
if (DetectEncoding_Prop &&
ByteLen_Prop
>= 2)
1045
n += Decoder_Prop.GetChars(tmpByteBuffer, 0,
ByteLen_Prop
, buffer, index + charsRead);
1054
n = Decoder_Prop.GetChars(tmpByteBuffer, 0,
ByteLen_Prop
, CharBuffer_Prop, 0);
1204
if (
ByteLen_Prop
> 0)
1206
CharLen_Prop += Decoder_Prop.GetChars(tmpByteBuffer, 0,
ByteLen_Prop
, CharBuffer_Prop, CharLen_Prop);
1219
Contract.Assert(
ByteLen_Prop
>= 0, "Stream.Read returned a negative number! Bug in stream class.");
1221
if (
ByteLen_Prop
== 0) // We're at EOF
1228
IsBlocked_Prop = (
ByteLen_Prop
< tmpByteBuffer.Length);
1238
if (DetectEncoding_Prop &&
ByteLen_Prop
>= 2)
1241
CharLen_Prop += Decoder_Prop.GetChars(tmpByteBuffer, 0,
ByteLen_Prop
, CharBuffer_Prop, CharLen_Prop);