ImageMagick.StreamHelper.CheckLength C# (CSharp) Method

CheckLength() private static method

private static CheckLength ( long length ) : void
length long
return void
    private static void CheckLength(long length)
    {
      if (length > 2147483591)
        throw new ArgumentException("Streams with a length larger than 2147483591 are not supported, read from file instead.", nameof(length));
    }