public EndPointAttribute(IEnumerable <string> endpointNames) { foreach (string endpointName in endpointNames) { IncludedEndPoints.Add(endpointName); } }
public EndPointAttribute(string endpointName, string excludedEndpointName) { IncludedEndPoints.Add(endpointName); ExcludedEndpoints.Add(excludedEndpointName); }