19 references to MsmqTransportSecurity
System.ServiceModel (19)
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\MsmqOutputChannel.cs (2)
159
msmqMessage.ApplyCertificateIfNeeded(this.certificateTokenProvider, this.factory.
MsmqTransportSecurity
.MsmqAuthenticationMode, timeout);
168
Msmq.EnterXPSendLock(out lockHeld, this.factory.
MsmqTransportSecurity
.MsmqProtectionLevel);
System\ServiceModel\Channels\MsmqOutputMessage.cs (8)
84
if (MsmqAuthenticationMode.WindowsDomain == factory.
MsmqTransportSecurity
.MsmqAuthenticationMode)
94
MsmqSecureHashAlgorithmHelper.ToInt32(factory.
MsmqTransportSecurity
.MsmqSecureHashAlgorithm));
96
if (ProtectionLevel.EncryptAndSign == factory.
MsmqTransportSecurity
.MsmqProtectionLevel)
104
MsmqEncryptionAlgorithmHelper.ToInt32(factory.
MsmqTransportSecurity
.MsmqEncryptionAlgorithm));
107
else if (MsmqAuthenticationMode.Certificate == factory.
MsmqTransportSecurity
.MsmqAuthenticationMode)
115
MsmqSecureHashAlgorithmHelper.ToInt32(factory.
MsmqTransportSecurity
.MsmqSecureHashAlgorithm));
117
if (ProtectionLevel.EncryptAndSign == factory.
MsmqTransportSecurity
.MsmqProtectionLevel)
125
MsmqEncryptionAlgorithmHelper.ToInt32(factory.
MsmqTransportSecurity
.MsmqEncryptionAlgorithm));
System\ServiceModel\Channels\MsmqOutputSessionChannel.cs (2)
97
msmqMessage.ApplyCertificateIfNeeded(this.certificateTokenProvider, this.factory.
MsmqTransportSecurity
.MsmqAuthenticationMode, timeout);
105
Msmq.EnterXPSendLock(out lockHeld, this.factory.
MsmqTransportSecurity
.MsmqProtectionLevel);
System\ServiceModel\Channels\MsmqVerifier.cs (2)
26
VerifySecurity(factory.
MsmqTransportSecurity
, useActiveDirectory);
61
if (MsmqAuthenticationMode.Certificate == factory.
MsmqTransportSecurity
.MsmqAuthenticationMode)
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (2)
155
msmqMessage.ApplyCertificateIfNeeded(this.certificateTokenProvider, this.factory.
MsmqTransportSecurity
.MsmqAuthenticationMode, timeout);
170
Msmq.EnterXPSendLock(out lockHeld, this.factory.
MsmqTransportSecurity
.MsmqProtectionLevel);