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