HttpWriter

HttpWritermarshal by reference, disposable

System.Web (system.web.dll)sealed class

This is the System.IO.TextWriter object that is used to write directly to an HTTP output stream. It is used internally by the Write( ) method of the HttpResponse class.

public sealed class HttpWriter : System.IO.TextWriter { // Public Instance Properties    public override Encoding Encoding{get; }         // overrides System.IO.TextWriter    public Stream OutputStream{get; } // Public Instance Methods    public override void Close( );                    // overrides System.IO.TextWriter    public override void Flush( );                    // overrides System.IO.TextWriter    public override void Write(char ch);            // overrides System.IO.TextWriter    public override void Write(char[ ] buffer, int index, int count);         // overrides System.IO.TextWriter    public override void Write(object obj);         // overrides System.IO.TextWriter    public override void Write(string s);           // overrides System.IO.TextWriter    public void WriteBytes(byte[ ] buffer, int index, int count);    public override void WriteLine( );                // overrides System.IO.TextWriter    public void WriteString(string s, int index, int count); }

Hierarchy

System.Object System.MarshalByRefObject System.IO.TextWriter(System.IDisposable) HttpWriter



ASP. NET in a Nutshell
ASP.NET in a Nutshell, Second Edition
ISBN: 0596005202
EAN: 2147483647
Year: 2003
Pages: 873

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net