12 references to Certificate
System.ServiceModel (12)
System\ServiceModel\Channels\MsmqBindingElementBase.cs (1)
392
this.MsmqTransportSecurity.MsmqAuthenticationMode = MsmqAuthenticationMode.
Certificate
;
System\ServiceModel\Channels\MsmqChannelFactoryBase.cs (3)
46
if (this.MsmqTransportSecurity.MsmqAuthenticationMode == MsmqAuthenticationMode.
Certificate
)
150
return (MsmqAuthenticationMode.
Certificate
== this.MsmqTransportSecurity.MsmqAuthenticationMode);
177
if (MsmqAuthenticationMode.
Certificate
== this.MsmqTransportSecurity.MsmqAuthenticationMode && this.SecurityTokenManager != null)
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (3)
91
if (MsmqAuthenticationMode.
Certificate
== this.ReceiveParameters.TransportSecurity.MsmqAuthenticationMode)
156
if (this.ReceiveParameters.TransportSecurity.MsmqAuthenticationMode == MsmqAuthenticationMode.
Certificate
)
181
if (MsmqAuthenticationMode.
Certificate
== this.ReceiveParameters.TransportSecurity.MsmqAuthenticationMode)
System\ServiceModel\Channels\MsmqOutputMessage.cs (2)
107
else if (MsmqAuthenticationMode.
Certificate
== factory.MsmqTransportSecurity.MsmqAuthenticationMode)
155
if (MsmqAuthenticationMode.
Certificate
== authenticationMode)
System\ServiceModel\Channels\MsmqVerifier.cs (2)
61
if (MsmqAuthenticationMode.
Certificate
== factory.MsmqTransportSecurity.MsmqAuthenticationMode)
151
if (security.MsmqAuthenticationMode == MsmqAuthenticationMode.
Certificate
&& security.MsmqProtectionLevel == ProtectionLevel.None)
System\ServiceModel\MsmqAuthenticationMode.cs (1)
17
return mode >= MsmqAuthenticationMode.None && mode <= MsmqAuthenticationMode.
Certificate
;