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