<add> of <authorizationPolicies>

Specifies an authorization policy for claim transformation.

<configuration>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <serviceAuthorization>
            <authorizationPolicies>
              <add>

Syntax

<authorizationPolicies>
  <add policyType="String" />
</authorizationPolicies>

Type

Type

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute Description
policyType A required String attribute.

The Windows Communication Foundation (WCF) access control model supports provisioning a set of authorization policies as types. This attribute specifies an authorization policy, which enables transformation of one set of input claims into another set of claims. Access control can be granted or denied based on that.

Child Elements

None.

Parent Elements

Element Description
<authorizationPolicies> Specifies a collection of authorization policy types.

Remarks

Each authorization policy contains a single required policyType attribute that is a string. The attribute specifies an authorization policy, which enables transformation of one set of input claims into another set of claims. Access control can be granted or denied based on that. For more information on how an authorization policy works, see IAuthorizationPolicy and Authorization Policy.

See also