@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: These flags indicate the members of the RasCredentials structure that are valid. On input, set the flags to indicate the members of interest. On output, the function sets the flags to indicate the members that contain valid data. !!!!C# Definition: [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 } !!!!VB Definition: Enum RasCredentialsMask TODO End Enum !!!!Notes: None. Documentation: http://msdn.microsoft.com/en-us/library/aa376730(VS.85).aspx
Edit Enums.RasCredenti...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.