public AnyOfClientIPAddressesOrRangesPredicate(Property property, ShortList <string> valueEntries, RulesCreationContext creationContext) : base(property, valueEntries, creationContext)
 {
     if (!base.Property.IsString && !typeof(IPAddress).IsAssignableFrom(base.Property.Type))
     {
         throw new RulesValidationException(RulesTasksStrings.ClientAccessRulesIpPropertyRequired(this.Name));
     }
 }