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