System.Web.HttpResponseStream.UnsafeWrite C# (CSharp) Method

UnsafeWrite() private method

private UnsafeWrite ( System.Web.HttpWorkerRequest wr, byte buffer, int offset, int count ) : void
wr System.Web.HttpWorkerRequest
buffer byte
offset int
count int
return void
		void UnsafeWrite (HttpWorkerRequest wr, byte [] buffer, int offset, int count)
		{
			if (count <= 0)
				return;

			byte[] copy = new byte[count];
			Array.Copy(buffer, offset, copy, 0, count);
			wr.SendResponseFromMemory (copy, count);
		}
#else