HttpWriter::Write Method (array<Char>^, Int32, Int32)

 

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

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
virtual void Write(
	array<wchar_t>^ buffer,
	int index,
	int count
) override

Parameters

buffer
Type: array<System::Char>^

The memory buffer containing the characters to send to the HTTP output stream

index
Type: System::Int32

The buffer position of the first character to send.

count
Type: System::Int32

The number of characters to send beginning at the position specified by index.

Exception Condition
ArgumentOutOfRangeException

buffer, is null.

- or -

index is less than zero.

- or -

count is less than zero.

- or -

buffer length minus index is less than count.

.NET Framework
Available since 1.1
Return to top
Show: