.NET Framework Class Library
WindowsIdentity Constructor (String)

Initializes a new instance of the WindowsIdentity class for the user represented by the specified User Principal Name (UPN).

Namespace:  System.Security.Principal
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic (Declaration)
Public Sub New ( _
    sUserPrincipalName As String _
)
Visual Basic (Usage)
Dim sUserPrincipalName As String

Dim instance As New WindowsIdentity(sUserPrincipalName)
C#
public WindowsIdentity(
    string sUserPrincipalName
)
Visual C++
public:
WindowsIdentity(
    String^ sUserPrincipalName
)
JScript
public function WindowsIdentity(
    sUserPrincipalName : String
)

Parameters

sUserPrincipalName
Type: System..::.String
The UPN for the user on whose behalf the code is running.
Exceptions

ExceptionCondition
UnauthorizedAccessException

Windows returned the Windows NT status code STATUS_ACCESS_DENIED.

OutOfMemoryException

There is insufficient memory available.

SecurityException

The caller does not have the correct permissions.

Remarks

The UPN identified in sUserPrincipalName is used to retrieve a token for that user through the Win32 API LsaLogonUser function. In turn that token is used to identify the user. An exception might be returned due to the inability to log on using the supplied UPN.

NoteNote:

This constructor is intended for use on computers joined only to Windows Server 2003 domains. An exception is thrown for other domain types.

.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1
See Also

Reference

Tags :


Page view tracker