System.Net.Http.HttpContent.FixedMemoryStream.CheckOverflow C# (CSharp) Метод

CheckOverflow() приватный Метод

private CheckOverflow ( int count ) : void
count int
Результат void
			void CheckOverflow (int count)
			{
				if (Length + count > maxSize)
					throw new HttpRequestException (string.Format ("Cannot write more bytes to the buffer than the configured maximum buffer size: {0}", maxSize));
			}