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