3 instantiations of ServiceAuthenticationBehavior
System.ServiceModel (3)
System\ServiceModel\Configuration\ServiceAuthenticationElement.cs (1)
53ServiceAuthenticationBehavior behavior = new ServiceAuthenticationBehavior();
System\ServiceModel\Description\ServiceAuthenticationBehavior.cs (1)
160return new ServiceAuthenticationBehavior(this);
System\ServiceModel\ServiceHost.cs (1)
593a = new ServiceAuthenticationBehavior();
13 references to ServiceAuthenticationBehavior
System.ServiceModel (13)
System\ServiceModel\Configuration\ServiceAuthenticationElement.cs (2)
48get { return typeof(ServiceAuthenticationBehavior); } 53ServiceAuthenticationBehavior behavior = new ServiceAuthenticationBehavior();
System\ServiceModel\Description\ServiceAuthenticationBehavior.cs (2)
32ServiceAuthenticationBehavior(ServiceAuthenticationBehavior other) 158internal ServiceAuthenticationBehavior Clone()
System\ServiceModel\ServiceConfiguration.cs (1)
42public ServiceAuthenticationBehavior Authentication
System\ServiceModel\ServiceHost.cs (8)
49ServiceAuthenticationBehavior readOnlyAuthentication; 103public ServiceAuthenticationBehavior Authentication 586ServiceAuthenticationBehavior EnsureAuthentication(ServiceDescription description) 589ServiceAuthenticationBehavior a = description.Behaviors.Find<ServiceAuthenticationBehavior>(); 1067ServiceAuthenticationBehavior authentication = description.Behaviors.Find<ServiceAuthenticationBehavior>(); 1070ServiceAuthenticationBehavior authenticationCopy = authentication.Clone();