15 types derived from TextReader
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)
Microsoft.Maui.Controls (1)
System.Console (3)
System.Private.CoreLib (3)
322 references to TextReader
ClientSample (1)
dotnet-dev-certs (2)
dotnet-getdocument (2)
dotnet-openapi (2)
dotnet-sql-cache (2)
dotnet-svcutil-lib (41)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (13)
136public TextReader inputTextReader;
490internal XmlTextReaderImpl(TextReader input) : this(string.Empty, input, new NameTable())
493internal XmlTextReaderImpl(TextReader input, XmlNameTable nt) : this(string.Empty, input, nt)
496internal XmlTextReaderImpl(string url, TextReader input) : this(url, input, new NameTable())
499internal XmlTextReaderImpl(string url, TextReader input, XmlNameTable nt) : this(nt)
768internal XmlTextReaderImpl(TextReader input, XmlReaderSettings settings, string baseUriStr, XmlParserContext context)
2224internal TextReader GetRemainder()
2984private void InitTextReaderInput(string baseUriStr, TextReader input)
2989private void InitTextReaderInput(string baseUriStr, Uri baseUri, TextReader input)
8096if (_xmlResolver.SupportsType(uri, typeof(TextReader)))
8098TextReader textReader = (TextReader)_xmlResolver.GetEntity(uri, null, typeof(TextReader));
dotnet-user-jwts (2)
dotnet-user-secrets (2)
GetDocument.Insider (2)
illink (1)
Microsoft.Analyzers.Local (4)
Microsoft.Analyzers.Local.Tests (1)
Microsoft.AspNetCore.Authentication.JwtBearer.Tools.Tests (1)
Microsoft.AspNetCore.Mvc.Abstractions (6)
Microsoft.AspNetCore.Mvc.Core (9)
Microsoft.AspNetCore.Mvc.Core.TestCommon (1)
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
Microsoft.AspNetCore.Rewrite (4)
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Microsoft.AspNetCore.WebUtilities (2)
Microsoft.Build (7)
Microsoft.Build.Engine.OM.UnitTests (4)
Microsoft.Build.Engine.UnitTests (2)
Microsoft.Build.Tasks.Core (5)
Microsoft.Build.UnitTests.Shared (1)
Microsoft.Build.Utilities.Core (5)
Microsoft.CodeAnalysis (5)
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (1)
Microsoft.CodeAnalysis.EditorFeatures (2)
Microsoft.CodeAnalysis.Scripting (2)
Microsoft.CodeAnalysis.UnitTests (1)
Microsoft.CodeAnalysis.Workspaces (5)
Microsoft.CodeAnalysis.Workspaces.MSBuild (2)
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (2)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
Microsoft.Data.Analysis (5)
Microsoft.Data.Analysis.Tests (2)
Microsoft.DotNet.Build.Tasks.VisualStudio (1)
Microsoft.DotNet.Open.Api.Tools.Tests (1)
Microsoft.DotNet.XliffTasks (7)
Microsoft.Extensions.ApiDescription.Tool.Tests (1)
Microsoft.Extensions.SecretManager.Tools.Tests (1)
Microsoft.Maui.Controls (7)
Microsoft.Maui.Graphics (1)
Microsoft.ML.AutoML (1)
Microsoft.ML.Core (5)
Microsoft.ML.Data (8)
Microsoft.ML.TestFramework (2)
Microsoft.ML.Transforms (1)
Microsoft.VisualBasic.Core (2)
MSBuild (4)
MSBuildTaskHost (2)
mscorlib (1)
netstandard (1)
PresentationFramework (4)
System.CodeDom (3)
System.Console (8)
System.Data.Common (13)
System.IO (1)
System.Private.CoreLib (15)
src\libraries\System.Private.CoreLib\src\System\IO\TextReader.cs (15)
23public static readonly TextReader Null = new StreamReader.NullStreamReader();
211/// <para>The <see cref="TextReader"/> class is an abstract class. Therefore, you do not instantiate it in
214/// <para>If the current <see cref="TextReader"/> represents the standard input stream returned by
222Task<string?>.Factory.StartNew(static state => ((TextReader)state!).ReadLine(), this,
237/// <para>The <see cref="TextReader"/> class is an abstract class. Therefore, you do not instantiate it in
279var t = (TupleSlim<TextReader, Memory<char>>)state!;
281}, new TupleSlim<TextReader, Memory<char>>(this, buffer), cancellationToken, TaskCreationOptions.DenyChildAttach, TaskScheduler.Default));
286var t = (TupleSlim<TextReader, Memory<char>>)state!;
288}, new TupleSlim<TextReader, Memory<char>>(this, buffer), cancellationToken, TaskCreationOptions.DenyChildAttach, TaskScheduler.Default));
309var t = (TupleSlim<TextReader, Memory<char>>)state!;
311}, new TupleSlim<TextReader, Memory<char>>(this, buffer), cancellationToken, TaskCreationOptions.DenyChildAttach, TaskScheduler.Default));
326public static TextReader Synchronized(TextReader reader)
335internal readonly TextReader _in;
337internal SyncTextReader(TextReader t)
System.Private.Xml (41)
System\Xml\Core\XmlTextReaderImpl.cs (13)
129public TextReader? inputTextReader;
481internal XmlTextReaderImpl(TextReader input) : this(string.Empty, input, new NameTable())
485internal XmlTextReaderImpl(TextReader input, XmlNameTable nt) : this(string.Empty, input, nt)
489internal XmlTextReaderImpl(string url, TextReader input) : this(url, input, new NameTable())
493internal XmlTextReaderImpl(string? url, TextReader input, XmlNameTable nt) : this(nt)
756internal XmlTextReaderImpl(TextReader input, XmlReaderSettings settings, string baseUriStr, XmlParserContext? context)
2163internal TextReader GetRemainder()
2910private void InitTextReaderInput(string baseUriStr, TextReader input)
2915private void InitTextReaderInput(string baseUriStr, Uri? baseUri, TextReader input)
7953if (_xmlResolver.SupportsType(uri, typeof(TextReader)))
7955TextReader? textReader = (TextReader?)_xmlResolver.GetEntity(uri, null, typeof(TextReader));
System.Private.Xml.Linq (27)
System.Runtime (1)
System.Runtime.Extensions (1)
System.Security.Cryptography.Xml (2)
System.Web.Services.Description (2)
System.Windows.Forms (6)
System.Windows.Forms.Tests (1)
System.Xaml (6)
System.Xaml.Tests (1)
xunit.console (4)