Freigeben über


ServiceAuthorizationBehavior Konstruktor

Definition

Initialisiert eine neue Instanz der ServiceAuthorizationBehavior-Klasse.

public:
 ServiceAuthorizationBehavior();
public ServiceAuthorizationBehavior ();
Public Sub New ()

Beispiele

Der folgende Code zeigt, wie eine Instanz dieser Klasse abgerufen wird.

// Code to create a ServiceHost not shown.
ServiceAuthorizationBehavior MyServiceAuthoriationBehavior =
    serviceHost.Description.Behaviors.Find<ServiceAuthorizationBehavior>();
MyServiceAuthoriationBehavior.ImpersonateCallerForAllOperations = true;
' Code to create a ServiceHost not shown.
Dim MyServiceAuthoriationBehavior As ServiceAuthorizationBehavior 
MyServiceAuthoriationBehavior= serviceHost.Description.Behaviors.Find _
(Of ServiceAuthorizationBehavior)()
MyServiceAuthoriationBehavior.ImpersonateCallerForAllOperations = True

Hinweise

Normalerweise rufen Anwendungen den Konstruktor nicht direkt auf. Sie rufen stattdessen eine Instanz dieser Klasse durch den Aufruf von ServiceHostBase.Description.Behaviors.Find<ServiceAuthorizationBehavior> ab.

Gilt für