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