ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

ASP.NET.in.a.Nutshell.Second.Edition [Electronic resources] - نسخه متنی

G. andrew Duthie; matthew Macdonald

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید









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


/ 873