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