예제 #1
0
 static void ValidateMaxFrameLength(int maxFrameLength)
 {
     if ((uint)(maxFrameLength - 1) > SharedConstants.TooBigOrNegative) // <= 0
     {
         CThrowHelper.ThrowArgumentException_MaxFrameLengthMustBe(maxFrameLength);
     }
 }