6 writes to Address
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (2)
244this.Endpoint.Address = address; 276this.Endpoint.Address = address;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (2)
85EndpointAddress address = context.Endpoint.Address = WsdlImporter.WSAddressingHelper.ImportAddress(context.WsdlPort); 88context.Endpoint.Address = address;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (2)
109address = context.Endpoint.Address = WsdlImporter.WSAddressingHelper.ImportAddress(context.WsdlPort); 114context.Endpoint.Address = address;
17 references to Address
dotnet-svcutil-lib (17)
CodeDomFixup\EndpointSelector.cs (1)
339string incompatEndpointMsg = string.Format(CultureInfo.InvariantCulture, SR.WrnIncompatibleEndpointFormat, endpoint.Name, endpoint.Address);
CodeDomFixup\MethodCreationHelper.cs (2)
56string endpointAddress = endpoint?.Address?.ToString(); 2138EndpointIdentity identity = serviceEndpoint.Address.Identity;
FrameworkFork\System.ServiceModel\System\ServiceModel\ChannelFactory.cs (2)
139if (endpoint.Address == null) 144return endpoint.Address;
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (3)
527if (client.Endpoint.Address == null) 534_channel = cf.ServiceChannelFactory.CreateServiceChannel(client.Endpoint.Address, client.Endpoint.Address.Uri);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceEndpointCollection.cs (1)
110if (endpoint != null && endpoint.Address.Uri == address)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (5)
345if (endpoint.Address != null) 358addressBinding.Location = endpoint.Address.Uri.AbsoluteUri; 1211if (endpoint.Address != null && endpoint.Address.Uri != null) 1212endpointIdentifier = endpoint.Address.Uri.ToString();
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (3)
3027if (isIssuerSpecified && !parameters.IssuerAddress.Uri.Equals(endpoint.Address.Uri)) 3034parameters.IssuerAddress = endpoint.Address; 3040endpointInfo.IssuerAddress = endpoint.Address;