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