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