Trustee Class
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.
Specifies a user account, group account, or logon session to which an access control entry applies.
public ref class Trustee
public class Trustee
type Trustee = class
Public Class Trustee
- Inheritance
-
Trustee
Remarks
The trustee is the entity to whom you are granting or denying access rights when you create an access control entry. Set the TrusteeType member (either directly or using the Trustee constructor) to specify whether the trustee is a user, computer, or other type. If you do not specify the trustee type before setting permissions for the trustee, the type defaults to Unknown
.
You must specify a value for the Name property before using the Trustee to set permissions. The Name contains the name of the user, group, or computer account to which the new access rights will be assigned. Optionally, you can set the SystemName property to identify the name of the system on which the trustee account is looked up to resolve the name's security identifier. If you do not specify a value for SystemName, the local computer looks up the account name.
Constructors
Trustee() |
Initializes a new instance of the Trustee class without setting any of its read/write properties. |
Trustee(String, String, TrusteeType) |
Initializes a new instance of the Trustee class of the specified type, setting the Name and the SystemName properties to the values specified. |
Trustee(String, String) |
Initializes a new instance of the Trustee class of type |
Trustee(String) |
Initializes a new instance of the Trustee class of type |
Properties
Name |
Gets or sets the name of the trustee. |
SystemName |
Gets or sets the computer on which to look up the trustee's account. |
TrusteeType |
Gets or sets the type of the trustee, which identifies whether the trustee is a user, group, computer, domain, or alias. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |