12 overrides of Read
CSharpSyntaxGenerator (1)
Microsoft.AspNetCore.SignalR.Common (1)
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Microsoft.AspNetCore.WebUtilities (1)
Microsoft.CodeAnalysis (1)
Microsoft.CodeAnalysis.ResxSourceGenerator (1)
Microsoft.CodeAnalysis.Workspaces (1)
System.Console (1)
System.Private.CoreLib (3)
22 references to Read
dotnet-svcutil-lib (1)
Microsoft.AspNetCore.WebUtilities (1)
Microsoft.CodeAnalysis.UnitTests (5)
XmlDocumentationCommentTextReaderTests.cs (5)
24charsRead = s.Read(buffer, 0, 200);
33charsRead = s.Read(buffer, 0, 10);
40charsRead = s.Read(buffer, 0, 200);
50charsRead = s.Read(buffer, 0, 200);
60charsRead = s.Read(buffer, 0, 200);
Microsoft.Data.Analysis (3)
Microsoft.Data.Analysis.Tests (3)
Microsoft.VisualBasic.Core (3)
System.Console (1)
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\IO\TextReader.cs (4)
102int numRead = Read(array, 0, buffer.Length);
123while ((len = Read(chars, 0, chars.Length)) != 0)
138n += (i = Read(buffer, index + n, count - n));
360public override int Read(char[] buffer, int index, int count) => _in.Read(buffer, index, count);
System.Private.Xml (1)