20 references to Certificate
System.ServiceModel (20)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (2)
477if (specificBehavior.Peer != null && specificBehavior.Peer.Certificate != null) 479instance.SetProperty(AdministrationStrings.Peer, specificBehavior.Peer.Certificate.ToString(true));
System\ServiceModel\Administration\ServiceInstanceProvider.cs (2)
198if (specificBehavior.Peer != null && specificBehavior.Peer.Certificate != null) 201result += String.Format(CultureInfo.InvariantCulture, "Certificate: {0}\n", specificBehavior.Peer.Certificate.ToString(true));
System\ServiceModel\Channels\PeerSecurityManager.cs (5)
219if (credential.Certificate == null) 745result = credential.Certificate; 934if (this.credential.Certificate != null) 935result = new X509SecurityTokenProvider(this.credential.Certificate); 957return new PeerX509TokenProvider(validator, this.credential.Certificate);
System\ServiceModel\Security\PeerCredential.cs (11)
147if (this.Certificate != null && that.Certificate != null && !this.Certificate.Equals(that.Certificate)) 157if (this.Certificate == null && that.Certificate == null) 159if ((this.Certificate == null) || !this.Certificate.Equals(that.Certificate)) 163if (!this.Certificate.Equals(that.Certificate))