40 references to Identity
System.ServiceModel (39)
System\ServiceModel\Administration\EndpointInfo.cs (1)
32this.identity = endpoint.Address.Identity;
System\ServiceModel\Channels\HttpChannelFactory.cs (3)
778X509CertificateEndpointIdentity remoteCertificateIdentity = to.Identity as X509CertificateEndpointIdentity; 897if ((target.Identity == null) || (target.Identity is X509CertificateEndpointIdentity))
System\ServiceModel\Channels\HttpsChannelFactory.cs (3)
98if (remoteAddress.Identity != null) 101remoteAddress.Identity as X509CertificateEndpointIdentity; 111EndpointIdentity identity = remoteAddress.Identity;
System\ServiceModel\Channels\PeerSecurityHelpers.cs (1)
224identity = reference.Identity;
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (1)
3537acksTo = new EndpointAddress(info.CreateSequenceInfo.To, match.Identity, match.Headers);
System\ServiceModel\Channels\TransportSecurityHelpers.cs (3)
50EndpointIdentity identity = target.Identity; 95EndpointIdentity identity = target.Identity; 138X509CertificateEndpointIdentity remoteCertificateIdentity = to.Identity as X509CertificateEndpointIdentity;
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
120ServiceChannel localChannel = serviceChannelFactory.CreateServiceChannel(new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri);
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (1)
120object transparentProxy = serviceChannelFactory.CreateChannel(contractType, new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri);
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (1)
117serviceChannel = serviceChannelFactory.CreateServiceChannel(new EndpointAddress(serviceEndpoint.Address.Uri, serviceEndpoint.Address.Identity, serviceEndpoint.Address.Headers), serviceEndpoint.Address.Uri);
System\ServiceModel\Configuration\ChannelEndpointElement.cs (2)
31if (null != address.Identity) 33this.Identity.InitializeFrom(address.Identity);
System\ServiceModel\Configuration\EndpointAddressElementBase.cs (2)
69if (null != endpointAddress.Identity) 71this.Identity.InitializeFrom(endpointAddress.Identity);
System\ServiceModel\Configuration\PeerCustomResolverElement.cs (1)
101this.Identity.InitializeFrom(settings.Address.Identity);
System\ServiceModel\Description\DispatcherBuilder.cs (2)
691EndpointIdentity identity = stuff.Value.Endpoints[0].Address.Identity; 718if (!object.Equals(endpoint.Address.Identity, identity))
System\ServiceModel\Dispatcher\EndpointDispatcher.cs (1)
170if ((this.originalAddress != null) && (this.originalAddress.Identity != null))
System\ServiceModel\EndpointAddress.cs (9)
443if (this.Identity == null) 445if (endpointAddress.Identity != null) 450else if (!this.Identity.Equals(endpointAddress.Identity)) 1093if (this.Identity != null) 1095this.Identity.WriteTo(writer); 1150if (this.Identity != null) 1152this.Identity.WriteTo(writer); 1287this.identity = address.Identity;
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (3)
303if ((targetServerCertificate == null) && (targetAddress.Identity != null) && (targetAddress.Identity.GetType() == typeof(X509CertificateEndpointIdentity))) 305targetServerCertificate = ((X509CertificateEndpointIdentity)targetAddress.Identity).Certificates[0];
System\ServiceModel\Security\IdentityVerifier.cs (2)
65if (reference.Identity == null && reference.Uri != via) 197identity = reference.Identity;
System\ServiceModel\Security\SpnegoTokenProvider.cs (1)
223identity = target.Identity;
System\ServiceModel\Security\WSSecurityPolicy.cs (1)
2300addressToSerialize.Identity,
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
502endpointIdentity = endpoint.Address.Identity;