Security Note
Passwords in answer files are not encrypted. They are plain text at worst, and base64 encoded
at best. Do not store answer files with sensitive passwords in public locations.
public class LocalCredential : IEquatable<LocalCredential>
Public Class LocalCredential
Implements IEquatable(Of LocalCredential)
public ref class LocalCredential : IEquatable<LocalCredential^>
type LocalCredential =
class
interface IEquatable<LocalCredential>
end
While the DomainCredential class can represent either a domain or local user account, this class can only represent a local user account.
LocalCredential | Creates a new instance of the LocalCredential class. |
Group | Gets the group to which the user will be added. |
Password | Gets the password of the account. |
UserName | Gets the user name of the account. |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (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) |
Parse | Parses the domain and user name from a string in the form 'user,password' or 'group:user,password'. |
DefaultGroup | The group that users will be added to if no group is explicitly specified. |