[Flags]
public enum RasCredentialsMask
{
/// <summary>The szUserName member is valid.</summary>
RASCM_UserName = 0x00000001,
/// <summary>The szPassword member is valid.</summary>
RASCM_Password = 0x00000002,
/// <summary>The szDomain member is valid.</summary>
RASCM_Domain = 0x00000004,
/// <summary>Indicates that the credentials are default credentials for an all-user connection.</summary>
RASCM_DefaultCreds = 0x00000008,
/// <summary>Specify this flag to either set or retrieve a pre-shared key.
/// This flag cannot be used in combination with any other flag.</summary>
RASCM_PreSharedKey = 0x00000010,
/// <summary>Used to set the pre-shared key for the RAS server.</summary>
RASCM_ServerPreSharedKey = 0x00000020,
/// <summary>Used to set the pre-shared key for a demand-dial interface.</summary>
RASCM_DDMPreSharedKey = 0x00000040
}
Enum RasCredentialsMask
TODO
End Enum
None.