14 references to Security
System.ServiceModel (14)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (2)
268
securitySettings.SetProperty(AdministrationStrings.PeerSecurityMode, peer.
Security
.Mode.ToString());
270
transportSecuritySettings.SetProperty(AdministrationStrings.PeerTransportCredentialType, peer.
Security
.Transport.CredentialType.ToString());
System\ServiceModel\Channels\PeerChannelFactory.cs (1)
51
this.securityManager = PeerSecurityManager.Create(bindingElement.
Security
, context, this.readerQuotas);
System\ServiceModel\Channels\PeerChannelListener.cs (1)
48
securityManager = PeerSecurityManager.Create(bindingElement.
Security
, context, this.readerQuotas);
System\ServiceModel\Channels\PeerTransportBindingElement.cs (5)
59
peerSecurity = new PeerSecuritySettings(elementToBeCloned.
Security
);
290
return (T)(object)new SecurityCapabilities(
Security
.SupportsAuthentication,
Security
.SupportsAuthentication,
291
false,
Security
.SupportedProtectionLevel,
Security
.SupportedProtectionLevel);
System\ServiceModel\Configuration\PeerTransportElement.cs (2)
72
this.Security.ApplyConfiguration(binding.
Security
);
103
this.Security.InitializeFrom(binding.
Security
);
System\ServiceModel\NetPeerTcpBinding.cs (3)
126
this.Security.Mode = transport.
Security
.Mode;
198
transport.
Security
.Mode = this.Security.Mode;
199
transport.
Security
.Transport.CredentialType = this.Security.Transport.CredentialType;