33 references to MsmqAuthenticationMode
System.ServiceModel (33)
System\ServiceModel\Channels\MsmqBindingElementBase.cs (4)
349
if (this.MsmqTransportSecurity.MsmqAuthenticationMode ==
MsmqAuthenticationMode
.WindowsDomain)
390
this.MsmqTransportSecurity.MsmqAuthenticationMode =
MsmqAuthenticationMode
.WindowsDomain;
392
this.MsmqTransportSecurity.MsmqAuthenticationMode =
MsmqAuthenticationMode
.Certificate;
397
this.MsmqTransportSecurity.MsmqAuthenticationMode =
MsmqAuthenticationMode
.None;
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\MsmqOutputMessage.cs (4)
84
if (
MsmqAuthenticationMode
.WindowsDomain == factory.MsmqTransportSecurity.MsmqAuthenticationMode)
107
else if (
MsmqAuthenticationMode
.Certificate == factory.MsmqTransportSecurity.MsmqAuthenticationMode)
153
internal void ApplyCertificateIfNeeded(SecurityTokenProviderContainer certificateTokenProvider,
MsmqAuthenticationMode
authenticationMode, TimeSpan timeout)
155
if (
MsmqAuthenticationMode
.Certificate == authenticationMode)
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\Channels\TransportDefaults.cs (2)
164
internal const
MsmqAuthenticationMode
MsmqAuthenticationMode = System.ServiceModel.
MsmqAuthenticationMode
.WindowsDomain;
System\ServiceModel\Configuration\MsmqTransportSecurityElement.cs (2)
21
public
MsmqAuthenticationMode
MsmqAuthenticationMode
23
get { return (
MsmqAuthenticationMode
)base[ConfigurationStrings.MsmqAuthenticationMode]; }
System\ServiceModel\Configuration\Properties.cs (2)
1977
properties.Add(new ConfigurationProperty("msmqAuthenticationMode", typeof(System.ServiceModel.
MsmqAuthenticationMode
), System.ServiceModel.
MsmqAuthenticationMode
.WindowsDomain, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.MsmqAuthenticationModeHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\MsmqAuthenticationMode.cs (3)
15
public static bool IsDefined(
MsmqAuthenticationMode
mode)
17
return mode >=
MsmqAuthenticationMode
.None && mode <=
MsmqAuthenticationMode
.Certificate;
System\ServiceModel\MsmqTransportSecurity.cs (4)
15
MsmqAuthenticationMode
msmqAuthenticationMode;
42
return this.msmqAuthenticationMode !=
MsmqAuthenticationMode
.None && this.msmqProtectionLevel != ProtectionLevel.None;
47
public
MsmqAuthenticationMode
MsmqAuthenticationMode
96
this.msmqAuthenticationMode =
MsmqAuthenticationMode
.None;