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