private static void FailOnFrameLengthLessThanInitialBytesToStrip(IByteBuffer input,
                                                                  int frameLength,
                                                                  int initialBytesToStrip)
 {
     _ = input.SkipBytes(frameLength);
     CThrowHelper.ThrowCorruptedFrameException_InitialBytesToStrip(frameLength, initialBytesToStrip);
 }