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