5 writes to security
System.ServiceModel (5)
System\ServiceModel\NetMsmqBinding.cs (5)
22
this.
security
= new NetMsmqSecurity();
28
this.
security
= new NetMsmqSecurity();
37
this.
security
= new NetMsmqSecurity(securityMode);
44
this.
security
= security;
74
set { this.
security
= value; }
12 references to security
System.ServiceModel (12)
System\ServiceModel\NetMsmqBinding.cs (12)
73
get { return this.
security
; }
146
if (this.
security
.Mode != NetMsmqSecurity.DefaultMode)
151
if (this.
security
.Transport.MsmqAuthenticationMode != MsmqDefaults.MsmqAuthenticationMode ||
152
this.
security
.Transport.MsmqEncryptionAlgorithm != MsmqDefaults.MsmqEncryptionAlgorithm ||
153
this.
security
.Transport.MsmqSecureHashAlgorithm != MsmqDefaults.MsmqSecureHashAlgorithm ||
154
this.
security
.Transport.MsmqProtectionLevel != MsmqDefaults.MsmqProtectionLevel)
159
if (this.
security
.Message.AlgorithmSuite != MsmqDefaults.MessageSecurityAlgorithmSuite ||
160
this.
security
.Message.ClientCredentialType != MsmqDefaults.DefaultClientCredentialType)
289
if (this.
security
.Mode == NetMsmqSecurityMode.Message || this.
security
.Mode == NetMsmqSecurityMode.Both)
291
return this.
security
.CreateMessageSecurity();
318
this.
security
.ConfigureTransportSecurity(transport);