Class WindowsIdentityHelper.LogonType
Logon type used with LogonUser.
Namespace: SuperOffice.Security.Util
Assembly: SoCore.dll
Syntax
public sealed class LogonType : Enum
Fields
Batch
This logon type is intended for batch servers, where processes may be executing on behalf of a user without their direct intervention; or for higher performance servers that process many clear-text authentication attempts at a time, such as mail or web servers. LogonUser does not cache credentials for this logon type.
Declaration
public const WindowsIdentityHelper.LogonType Batch
Field Value
Type | Description |
---|---|
WindowsIdentityHelper.LogonType |
Interactive
This logon type is intended for users who will be interactively using the machine, such as a user being logged on by a terminal server, remote shell, or similar process. This logon type has the additional expense of caching logon information for disconnected operation, and is therefore inappropriate for some client/server applications, such as a mail server.
Declaration
public const WindowsIdentityHelper.LogonType Interactive
Field Value
Type | Description |
---|---|
WindowsIdentityHelper.LogonType |
Network
This logon type is intended for high performance servers to authenticate clear text passwords. LogonUser does not cache credentials for this logon type.
Declaration
public const WindowsIdentityHelper.LogonType Network
Field Value
Type | Description |
---|---|
WindowsIdentityHelper.LogonType |
NetworkCleartext
Windows 2000/XP: This logon type preserves the name and password in the authentication packages, allowing the server to make connections to other network servers while impersonating the client. This allows a server to accept clear text credentials from a client, call LogonUser, verify that the user can access the system across the network, and still communicate with other servers.
Declaration
public const WindowsIdentityHelper.LogonType NetworkCleartext
Field Value
Type | Description |
---|---|
WindowsIdentityHelper.LogonType |
NewCredentials
Windows 2000/XP: This logon type allows the caller to clone its current token and specify new credentials for outbound connections. The new logon session has the same local identify, but uses different credentials for other network connections. This logon type is supported only by the LOGON32_PROVIDER_WINNT50 logon provider.
Declaration
public const WindowsIdentityHelper.LogonType NewCredentials
Field Value
Type | Description |
---|---|
WindowsIdentityHelper.LogonType |
Service
Indicates a service-type logon. The account provided must have the service privilege enabled.
Declaration
public const WindowsIdentityHelper.LogonType Service
Field Value
Type | Description |
---|---|
WindowsIdentityHelper.LogonType |
Unlock
This logon type is intended for GINA DLLs logging on users who will be interactively using the machine. This logon type allows a unique audit record to be generated that shows when the workstation was unlocked.
Declaration
public const WindowsIdentityHelper.LogonType Unlock
Field Value
Type | Description |
---|---|
WindowsIdentityHelper.LogonType |
value__
Logon type used with LogonUser.
Declaration
public int value__
Field Value
Type | Description |
---|---|
Int32 |