1 type derived from EndpointCollectionElement
System.ServiceModel (1)
System\ServiceModel\Configuration\StandardEndpointCollectionElement.cs (1)
14public partial class StandardEndpointCollectionElement<TStandardEndpoint, TEndpointConfiguration> : EndpointCollectionElement
25 references to EndpointCollectionElement
System.ServiceModel (25)
System\ServiceModel\Configuration\ConfigurationHelpers.cs (8)
84internal static EndpointCollectionElement GetAssociatedEndpointCollectionElement(ContextInformation evaluationContext, string endpointCollectionName) 86EndpointCollectionElement retVal = null; 94retVal = (EndpointCollectionElement)endpointsSection[endpointCollectionName]; 116internal static EndpointCollectionElement UnsafeGetAssociatedEndpointCollectionElement(ContextInformation evaluationContext, string endpointCollectionName) 118EndpointCollectionElement retVal = null; 126retVal = (EndpointCollectionElement)endpointsSection[endpointCollectionName]; 233internal static EndpointCollectionElement GetEndpointCollectionElement(string endpointCollectionName) 241internal static EndpointCollectionElement UnsafeGetEndpointCollectionElement(string endpointCollectionName)
System\ServiceModel\Configuration\ExtensionsSection.cs (1)
174else if (extensionType.IsSubclassOf(typeof(EndpointCollectionElement)))
System\ServiceModel\Configuration\StandardEndpointsSection.cs (10)
24Dictionary<string, EndpointCollectionElement> EndpointCollectionElements 28Dictionary<string, EndpointCollectionElement> endpointCollectionElements = new Dictionary<string, EndpointCollectionElement>(); 39new public EndpointCollectionElement this[string endpoint] 43return (EndpointCollectionElement)base[endpoint]; 84public List<EndpointCollectionElement> EndpointCollections 88List<EndpointCollectionElement> endpointCollections = new List<EndpointCollectionElement>(); 138EndpointCollectionElement endpointCollectionElement = sectionGroup.EndpointCollectionElements[sectionName]; 219EndpointCollectionElement endpointCollectionElement = null;
System\ServiceModel\Description\ConfigLoader.cs (6)
558static EndpointCollectionElement LookupEndpointCollectionElement(string endpointSectionName, ContextInformation context) 564EndpointCollectionElement endpointCollectionElement = null; 569endpointCollectionElement = (EndpointCollectionElement)ConfigurationHelpers.UnsafeGetEndpointCollectionElement(endpointSectionName); 575endpointCollectionElement = (EndpointCollectionElement)ConfigurationHelpers.UnsafeGetAssociatedEndpointCollectionElement(context, endpointSectionName); 612EndpointCollectionElement endpointCollectionElement = LookupEndpointCollectionElement(channelEndpointElement.Kind, context); 785EndpointCollectionElement endpointCollectionElement = LookupEndpointCollectionElement(serviceEndpointElement.Kind, context);