SecureConversationSecurityTokenParameters.RequireCancellation Property

Definition

Gets or sets a value that indicates whether cancellation is required.

public:
 property bool RequireCancellation { bool get(); void set(bool value); };
public bool RequireCancellation { get; set; }
member this.RequireCancellation : bool with get, set
Public Property RequireCancellation As Boolean

Property Value

true if cancellation is required; otherwise, false. The default is true.

Remarks

When Windows authentication is used in combination with a security context token, WCF does not populate the WindowsIdentity property with the actual caller's identity, but instead sets the property to anonymous. Because WCF security must re-create the content of the service security context for every request from the incoming security context token, the server does not keep track of the security session in the memory. Because it is impossible to serialize the WindowsIdentity instance into the security context token, the WindowsIdentity property returns an anonymous identity.

The following configuration exhibits this behavior.

<customBinding>
  <binding name="Cancellation">
       <textMessageEncoding />
        <security
            requireSecurityContextCancellation="false">
              <secureConversationBootstrap
                 requireSecurityContextCancellation="true" />
      </security>
    <httpTransport />
  </binding>
</customBinding>

For more information about security context tokens, see How to: Create a Security Context Token for a Secure Session.

Applies to