3 instantiations of ServiceAuthorizationBehavior
System.ServiceModel (3)
System\ServiceModel\Configuration\ServiceAuthorizationElement.cs (1)
103ServiceAuthorizationBehavior behavior = new ServiceAuthorizationBehavior();
System\ServiceModel\Description\ServiceAuthorizationBehavior.cs (1)
229return new ServiceAuthorizationBehavior(this);
System\ServiceModel\ServiceHost.cs (1)
579a = new ServiceAuthorizationBehavior();
26 references to ServiceAuthorizationBehavior
System.ServiceModel (26)
System\ServiceModel\Administration\ServiceInstanceProvider.cs (3)
229else if (behavior is ServiceAuthorizationBehavior) 232ServiceAuthorizationBehavior specificBehavior = (ServiceAuthorizationBehavior)behavior;
System\ServiceModel\Configuration\ServiceAuthorizationElement.cs (4)
47[ConfigurationProperty(ConfigurationStrings.ImpersonateCallerForAllOperations, DefaultValue = ServiceAuthorizationBehavior.DefaultImpersonateCallerForAllOperations)] 54[ConfigurationProperty(ConfigurationStrings.ImpersonateOnSerializingReply, DefaultValue = ServiceAuthorizationBehavior.DefaultImpersonateOnSerializingReply)] 103ServiceAuthorizationBehavior behavior = new ServiceAuthorizationBehavior(); 151get { return typeof(ServiceAuthorizationBehavior); }
System\ServiceModel\Description\ServiceAuthorizationBehavior.cs (3)
40ServiceAuthorizationBehavior(ServiceAuthorizationBehavior other) 169void CopyAuthorizationPoliciesAndManager(ServiceAuthorizationBehavior other) 227internal ServiceAuthorizationBehavior Clone()
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
103this.principalPermissionMode = ServiceAuthorizationBehavior.DefaultPrincipalPermissionMode;
System\ServiceModel\Dispatcher\SecurityValidationBehavior.cs (6)
274ServiceAuthorizationBehavior authorizationBehavior = description.Behaviors.Find<ServiceAuthorizationBehavior>(); 361ServiceAuthorizationBehavior behavior = description.Behaviors.Find<ServiceAuthorizationBehavior>(); 982ServiceAuthorizationBehavior behavior = description.Behaviors.Find<ServiceAuthorizationBehavior>();
System\ServiceModel\ServiceConfiguration.cs (1)
53public ServiceAuthorizationBehavior Authorization
System\ServiceModel\ServiceHost.cs (8)
48ServiceAuthorizationBehavior readOnlyAuthorization; 84public ServiceAuthorizationBehavior Authorization 572ServiceAuthorizationBehavior EnsureAuthorization(ServiceDescription description) 575ServiceAuthorizationBehavior a = description.Behaviors.Find<ServiceAuthorizationBehavior>(); 1059ServiceAuthorizationBehavior authorization = description.Behaviors.Find<ServiceAuthorizationBehavior>(); 1062ServiceAuthorizationBehavior authorizationCopy = authorization.Clone();