System.Web.HttpResponseStream.ByteBucket.Write C# (CSharp) Method

Write() public method

public Write ( IntPtr ptr, int count ) : int
ptr System.IntPtr
count int
return int
			public int Write (IntPtr ptr, int count)
			{
				if (Expandable == false)
					throw new Exception ("This should not happen.");

				blocks.Write (ptr, count);
				length += count;
				return count;
			}

Same methods

HttpResponseStream.ByteBucket::Write ( byte buf, int offset, int count ) : int
HttpResponseStream.ByteBucket