This documentation is archived and is not being maintained.

HttpWriter.WriteString Method

Sends a string with the specified starting position and number of characters to the HTTP output stream.

[Visual Basic]
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
);

Parameters

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.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also

HttpWriter Class | HttpWriter Members | System.Web Namespace

Show: