/// <summary> /// Provides a name override with list of groups names where this parameter applies /// </summary> public ExternalParameterAttribute(string name, ExternalParameterSecurityCheck security, params string[] groups) : this(groups) { Name = (name ?? string.Empty).Trim(); SecurityCheck = security; }