4 writes to Address
System.ServiceModel (2)
System\ServiceModel\Configuration\ChannelEndpointElement.cs (2)
29this.Address = address.Uri; 49this.Address = source.Address;
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Configuration\WorkflowControlEndpointElement.cs (1)
176channelEndpointElement.Address = this.Address;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\Configuration\ConfigurationUtility.cs (1)
33channelEndpointElement.Address = null;
16 references to Address
System.ServiceModel (9)
System\ServiceModel\Configuration\ChannelEndpointElement.cs (1)
49this.Address = source.Address;
System\ServiceModel\Description\ConfigLoader.cs (8)
167if (serviceEndpoint.Address == null && channelElement.Address != null && channelElement.Address.OriginalString.Length > 0) 169serviceEndpoint.Address = new EndpointAddress(channelElement.Address, LoadIdentity(channelElement.Identity), channelElement.Headers.Headers); 758if (endpoint.Address == null && channelEndpointElementCopy.Address != null && channelEndpointElementCopy.Address.OriginalString.Length > 0) 760endpoint.Address = new EndpointAddress(channelEndpointElementCopy.Address, LoadIdentity(channelEndpointElementCopy.Identity), channelEndpointElementCopy.Headers.Headers); 1369if (retval.Address != null) 1371values["RemoteEndpointUri"] = retval.Address.ToString();
System.ServiceModel.Discovery (7)
System\ServiceModel\Discovery\Configuration\AnnouncementChannelEndpointElementCollection.cs (2)
28string address = channelEndpointElement.Address == null ? "" : channelEndpointElement.Address.ToString().ToUpperInvariant();
System\ServiceModel\Discovery\Configuration\ConfigurationUtility.cs (2)
29if (!(channelEndpointElement.Address == null || String.IsNullOrEmpty(channelEndpointElement.Address.ToString())))
System\ServiceModel\Discovery\Configuration\DynamicEndpointElement.cs (3)
74if (channelEndpointElement.Address != null && !channelEndpointElement.Address.Equals(DiscoveryClientBindingElement.DiscoveryEndpointAddress.Uri)) 80channelEndpointElement.Address,