System.Web.HttpResponseStream.BlockManager.Send C# (CSharp) Method

Send() public method

public Send ( Stream stream, int start, int end ) : void
stream Stream
start int
end int
return void
			public void Send (Stream stream, int start, int end) {
				int length = end - start;
				if (length <= 0)
					return;

				if (length > buffer.Length - start)
					length = buffer.Length - start;

				stream.Write(buffer, start, length);
			}

Same methods

HttpResponseStream.BlockManager::Send ( System.Web.HttpWorkerRequest wr, int start, int end ) : void