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

GetTotalLength() private method

private GetTotalLength ( ) : int
return int
		internal int GetTotalLength ()
		{
			int size = 0;
			for (Bucket b = first_bucket; b != null; b = b.Next)
				size += b.Length;

			return size;
		}

Usage Example

Example #1
0
 internal int GetOutputByteCount()
 {
     return(output_stream.GetTotalLength());
 }