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