4 writes to MsmqAuthenticationMode
System.ServiceModel (4)
System\ServiceModel\Channels\MsmqBindingElementBase.cs (3)
390this.MsmqTransportSecurity.MsmqAuthenticationMode = MsmqAuthenticationMode.WindowsDomain; 392this.MsmqTransportSecurity.MsmqAuthenticationMode = MsmqAuthenticationMode.Certificate; 397this.MsmqTransportSecurity.MsmqAuthenticationMode = MsmqAuthenticationMode.None;
System\ServiceModel\Configuration\MsmqTransportSecurityElement.cs (1)
56security.MsmqAuthenticationMode = this.MsmqAuthenticationMode;
22 references to MsmqAuthenticationMode
System.ServiceModel (22)
System\ServiceModel\Channels\MsmqBindingElementBase.cs (1)
349if (this.MsmqTransportSecurity.MsmqAuthenticationMode == MsmqAuthenticationMode.WindowsDomain)
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 (4)
91if (MsmqAuthenticationMode.Certificate == this.ReceiveParameters.TransportSecurity.MsmqAuthenticationMode) 156if (this.ReceiveParameters.TransportSecurity.MsmqAuthenticationMode == MsmqAuthenticationMode.Certificate) 181if (MsmqAuthenticationMode.Certificate == this.ReceiveParameters.TransportSecurity.MsmqAuthenticationMode) 202else if (MsmqAuthenticationMode.WindowsDomain == this.ReceiveParameters.TransportSecurity.MsmqAuthenticationMode)
System\ServiceModel\Channels\MsmqOutputChannel.cs (1)
159msmqMessage.ApplyCertificateIfNeeded(this.certificateTokenProvider, this.factory.MsmqTransportSecurity.MsmqAuthenticationMode, timeout);
System\ServiceModel\Channels\MsmqOutputMessage.cs (2)
84if (MsmqAuthenticationMode.WindowsDomain == factory.MsmqTransportSecurity.MsmqAuthenticationMode) 107else if (MsmqAuthenticationMode.Certificate == factory.MsmqTransportSecurity.MsmqAuthenticationMode)
System\ServiceModel\Channels\MsmqOutputSessionChannel.cs (1)
97msmqMessage.ApplyCertificateIfNeeded(this.certificateTokenProvider, this.factory.MsmqTransportSecurity.MsmqAuthenticationMode, timeout);
System\ServiceModel\Channels\MsmqVerifier.cs (5)
61if (MsmqAuthenticationMode.Certificate == factory.MsmqTransportSecurity.MsmqAuthenticationMode) 143if (security.MsmqAuthenticationMode == MsmqAuthenticationMode.WindowsDomain && !Msmq.ActiveDirectoryEnabled) 147if (security.MsmqAuthenticationMode == MsmqAuthenticationMode.None && security.MsmqProtectionLevel != ProtectionLevel.None) 151if (security.MsmqAuthenticationMode == MsmqAuthenticationMode.Certificate && security.MsmqProtectionLevel == ProtectionLevel.None) 155if (security.MsmqAuthenticationMode == MsmqAuthenticationMode.WindowsDomain)
System\ServiceModel\Configuration\MsmqTransportSecurityElement.cs (1)
67SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MsmqAuthenticationMode, security.MsmqAuthenticationMode);
System\ServiceModel\MsmqIntegration\MsmqIntegrationBinding.cs (1)
81if (this.security.Transport.MsmqAuthenticationMode != MsmqDefaults.MsmqAuthenticationMode ||
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (1)
155msmqMessage.ApplyCertificateIfNeeded(this.certificateTokenProvider, this.factory.MsmqTransportSecurity.MsmqAuthenticationMode, timeout);
System\ServiceModel\MsmqTransportSecurity.cs (1)
32this.msmqAuthenticationMode = other.MsmqAuthenticationMode;
System\ServiceModel\NetMsmqBinding.cs (1)
151if (this.security.Transport.MsmqAuthenticationMode != MsmqDefaults.MsmqAuthenticationMode ||