3 instantiations of ChannelEndpointElement
System.ServiceModel (2)
System\ServiceModel\Description\ConfigLoader.cs (1)
730ChannelEndpointElement channelEndpointElementCopy = new ChannelEndpointElement();
System\ServiceModel\Description\ConfigWriter.cs (1)
41channelElement = new ChannelEndpointElement(endpoint.Address, typeName);
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\Configuration\ConfigurationUtility.cs (1)
17return new ChannelEndpointElement() { Kind = ConfigurationStrings.UdpDiscoveryEndpoint };
72 references to ChannelEndpointElement
System.ServiceModel (26)
System\ServiceModel\Configuration\ChannelEndpointElement.cs (1)
39internal void Copy(ChannelEndpointElement source)
System\ServiceModel\Configuration\ChannelEndpointElementCollection.cs (4)
12[ConfigurationCollection(typeof(ChannelEndpointElement), AddItemName = ConfigurationStrings.Endpoint)] 13public sealed class ChannelEndpointElementCollection : ServiceModelEnhancedConfigurationElementCollection<ChannelEndpointElement> 26ChannelEndpointElement configElementKey = (ChannelEndpointElement)element;
System\ServiceModel\Configuration\ClientSection.cs (1)
66foreach (ChannelEndpointElement endpoint in this.Endpoints)
System\ServiceModel\Configuration\ServiceMetadataEndpointElement.cs (2)
30protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 54protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System\ServiceModel\Configuration\StandardEndpointElement.cs (4)
45public void InitializeAndValidate(ChannelEndpointElement channelEndpointElement) 77public void ApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement channelEndpointElement) 158protected abstract void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement channelEndpointElement); 160protected abstract void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement);
System\ServiceModel\Description\ConfigLoader.cs (9)
150ChannelEndpointElement channelElement = LookupChannel(this.configurationContext, configurationName, serviceEndpoint.Contract, null, wildcard, false, out standardEndpoint); 600internal static ServiceEndpoint LookupEndpoint(ChannelEndpointElement channelEndpointElement, ContextInformation context) 610static ServiceEndpoint LookupEndpoint(ChannelEndpointElement channelEndpointElement, ContextInformation context, EndpointAddress address, ContractDescription contract) 724static void ConfigureEndpoint(StandardEndpointElement standardEndpointElement, ChannelEndpointElement channelEndpointElement, 730ChannelEndpointElement channelEndpointElementCopy = new ChannelEndpointElement(); 1273static bool IsChannelElementMatch(ChannelEndpointElement channelElement, ContractDescription contract, EndpointAddress address, bool useChannelElementKind, out ServiceEndpoint serviceEndpoint) 1317static ChannelEndpointElement LookupChannel(ContextInformation configurationContext, string configurationName, ContractDescription contract, 1322ChannelEndpointElement retval = null; 1324foreach (ChannelEndpointElement channelElement in clientSection.Endpoints)
System\ServiceModel\Description\ConfigWriter.cs (3)
33internal ChannelEndpointElement WriteChannelDescription(ServiceEndpoint endpoint, string typeName) 35ChannelEndpointElement channelElement = null; 92foreach (ChannelEndpointElement element in this.channels)
System\ServiceModel\Description\MetadataExchangeClient.cs (1)
202foreach (ChannelEndpointElement endpoint in clientSection.Endpoints)
System\ServiceModel\Description\ServiceContractGenerator.cs (1)
138public CodeTypeReference GenerateServiceEndpoint(ServiceEndpoint endpoint, out ChannelEndpointElement channelElement)
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\Configuration\WorkflowControlEndpointElement.cs (2)
134protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement channelEndpointElement) 163protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement)
System.ServiceModel.Discovery (29)
System\ServiceModel\Discovery\Configuration\AnnouncementChannelEndpointElementCollection.cs (4)
11[ConfigurationCollection(typeof(ChannelEndpointElement), AddItemName = ConfigurationStrings.Endpoint)] 12public sealed class AnnouncementChannelEndpointElementCollection : ServiceModelConfigurationElementCollection<ChannelEndpointElement> 26ChannelEndpointElement channelEndpointElement = (ChannelEndpointElement)element;
System\ServiceModel\Discovery\Configuration\AnnouncementEndpointElement.cs (2)
108protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 129protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System\ServiceModel\Discovery\Configuration\ConfigurationDiscoveryEndpointProvider.cs (3)
15readonly ChannelEndpointElement channelEndpointElement; 22public ConfigurationDiscoveryEndpointProvider(ChannelEndpointElement channelEndpointElement) 35static DiscoveryEndpoint ValidateAndGetDiscoveryEndpoint(ChannelEndpointElement channelEndpointElement)
System\ServiceModel\Discovery\Configuration\ConfigurationUtility.cs (4)
15public static ChannelEndpointElement GetDefaultDiscoveryEndpointElement() 20public static T LookupEndpoint<T>(ChannelEndpointElement channelEndpointElement) where T : ServiceEndpoint 27internal static void InitializeAndValidateUdpChannelEndpointElement(ChannelEndpointElement channelEndpointElement) 59foreach (ChannelEndpointElement channelEndpointElement in clientSection.Endpoints)
System\ServiceModel\Discovery\Configuration\DiscoveryClientElement.cs (4)
24public ChannelEndpointElement DiscoveryEndpoint 28return (ChannelEndpointElement)base[ConfigurationStrings.Endpoint]; 61typeof(ChannelEndpointElement), 108ChannelEndpointElement udpChannelEndpointElement = ConfigurationUtility.GetDefaultDiscoveryEndpointElement();
System\ServiceModel\Discovery\Configuration\DiscoveryClientSettingsElement.cs (3)
22public ChannelEndpointElement DiscoveryEndpoint 26return (ChannelEndpointElement)base[ConfigurationStrings.Endpoint]; 52typeof(ChannelEndpointElement),
System\ServiceModel\Discovery\Configuration\DiscoveryEndpointElement.cs (2)
132protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 158protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System\ServiceModel\Discovery\Configuration\DynamicEndpointElement.cs (2)
65protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 96protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System\ServiceModel\Discovery\Configuration\ServiceDiscoveryElement.cs (1)
69foreach (ChannelEndpointElement channelEndpointElement in this.AnnouncementEndpoints)
System\ServiceModel\Discovery\Configuration\UdpAnnouncementEndpointElement.cs (2)
133protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 153protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System\ServiceModel\Discovery\Configuration\UdpDiscoveryEndpointElement.cs (2)
159protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 179protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System.ServiceModel.Web (4)
System\ServiceModel\Configuration\WebHttpEndpointElement.cs (2)
179protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 208protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System\ServiceModel\Configuration\WebScriptEndpointElement.cs (2)
146protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) 175protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement)
System.Web.Extensions (10)
Compilation\WCFModel\VSWCFServiceContractGenerator.cs (10)
82private Dictionary<ServiceEndpoint, ChannelEndpointElement> serviceEndpointToChannelEndpointElementMap; 220public Dictionary<ServiceEndpoint, ChannelEndpointElement> EndpointMap 293Dictionary<ServiceEndpoint, ChannelEndpointElement> serviceEndpointToChannelEndpointElementMap, 412Dictionary<ServiceEndpoint, ChannelEndpointElement> serviceEndpointToChannelEndpointElementMap; 459new Dictionary<ServiceEndpoint, ChannelEndpointElement>(), 631out Dictionary<ServiceEndpoint, ChannelEndpointElement> serviceEndpointToChannelEndpointElementMap, 641serviceEndpointToChannelEndpointElementMap = new Dictionary<ServiceEndpoint, ChannelEndpointElement>(); 669ChannelEndpointElement endpointElement = null; 1007IEnumerable<ChannelEndpointElement> endpoints, 1027foreach (ChannelEndpointElement endpoint in endpoints)
System.WorkflowServices (1)
System\Workflow\Runtime\Hosting\ChannelManagerHelpers.cs (1)
238foreach (ChannelEndpointElement element in section.Endpoints)