static void ValidateMaxContentLength(int maxContentLength) { if ((uint)maxContentLength > SharedConstants.TooBigOrNegative) // < 0 { CThrowHelper.ThrowArgumentException_MaxContentLength(maxContentLength); } }