System.Web Namespace HttpWriter Class
Sends a stream of characters with the specified starting position and number of characters to the HTTP output stream.
[ VB ]
Overrides Overloads Public Sub Write ( _
ByVal buffer ( ) As Char, _
ByVal index As Integer, _
ByVal count As Integer _
)
[ C# ]
public override void Write (
char [ ] buffer,
int index,
int count
);
[ C++ ]
public: void Write (
__wchar_t buffer __gc [ ],
int index,
int count
);
[ JScript ]
public override function Write (
buffer : Char [ ],
index : int,
count : int
);
- buffer
- The memory buffer containing the characters to send to the HTTP output stream
- index
- The buffer position of the first character to send.
- count
- The number of characters to send beginning at the position specified by index.
HttpWriter Members HttpWriter.Write Overload List