Table of Contents

Class WindowsIdentityHelper

Namespace
CMS.Base
Assembly
CMS.Base.dll

Helper class for managing Windows identity.

public static class WindowsIdentityHelper
Inheritance
object
WindowsIdentityHelper

Methods

GetCurrent()

For Windows OS returns the identity of the current user, otherwise returns null.

public static WindowsIdentity GetCurrent()

Returns

WindowsIdentity

Impersonate(WindowsIdentity, Action)

Run given action under user represented by identity.

public static void Impersonate(WindowsIdentity identity, Action action)

Parameters

identity WindowsIdentity

Represents user used for impersonation.

action Action

Action to run.