DispatchRuntime.ImpersonateCallerForAllOperations Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that controls whether the service attempts to impersonate using the credentials provided by the incoming message.
public:
property bool ImpersonateCallerForAllOperations { bool get(); void set(bool value); };
public bool ImpersonateCallerForAllOperations { get; set; }
member this.ImpersonateCallerForAllOperations : bool with get, set
Public Property ImpersonateCallerForAllOperations As Boolean
Property Value
true
if the service attempts to impersonate based on message credentials when an operation's Impersonation property value is either Required or Allowed; false
if the service attempts impersonation only if an operation's Impersonation property value is Required. The default is false
.
Remarks
Use the ImpersonateCallerForAllOperations property to control whether impersonation is performed when an operation's Impersonation property value is Allowed. An exception is thrown if the property is true
but an operation's Impersonation property value is NotAllowed.
If an operation's Impersonation property value is Required impersonation is always attempted.