/// <summary>Defines the maximum token size in bytes.</summary>
        public TokenValidationPolicyBuilder MaximumTokenSizeInBytes(int size)
        {
            if (size <= 0)
            {
                ThrowHelper.ThrowArgumentOutOfRangeException_MustBeGreaterThanZero(ExceptionArgument.size, size);
            }

            _maximumTokenSizeInBytes = size;
            return(this);
        }