System.Web Namespace HttpWriter Class
Sends a string with the specified starting position and number of characters to the HTTP output stream.
[ VB ]
Public Sub WriteString ( _
ByVal s As String, _
ByVal index As Integer, _
ByVal count As Integer _
)
[ C# ]
public void WriteString (
string s,
int index,
int count
);
[ C++ ]
public: void WriteString (
String* s,
int index,
int count
);
[ JScript ]
public function WriteString (
s : String,
index : int,
count : int
);
- s
- The string to send to the HTTP output stream.
- index
- The character position of the first byte to send.
- count
- The number of characters to send, beginning at the character position specified by index.
HttpWriter Members