_MFP_CREDENTIAL_FLAGS enumeration
Contains flags for the MFP_ACQUIRE_USER_CREDENTIAL_EVENT structure.
Some of these flags, marked [out], convey information back to the MFPlay player object. The application should set or clear these flags as appropriate, before returning from the IMFPMediaPlayerCallback::OnMediaPlayerEvent callback method.
Syntax
typedef enum _MFP_CREDENTIAL_FLAGS { MFP_CREDENTIAL_PROMPT = 0x00000001, MFP_CREDENTIAL_SAVE = 0x00000002, MFP_CREDENTIAL_DO_NOT_CACHE = 0x00000004, MFP_CREDENTIAL_CLEAR_TEXT = 0x00000008, MFP_CREDENTIAL_PROXY = 0x00000010, MFP_CREDENTIAL_LOGGED_ON_USER = 0x00000020 } _MFP_CREDENTIAL_FLAGS;
Constants
- MFP_CREDENTIAL_PROMPT
-
The player object does not have any stored credentials and requires them from the application. If the player object can provide cached or stored credentials to the server, it does not set this flag.
- MFP_CREDENTIAL_SAVE
-
The credentials are saved to persistent storage. This flag acts as a hint for the application's UI. If the application prompts the user for credentials, the UI can indicate that the credentials have already been saved.
[out] If the application sets this flag, the player object saves the user credentials in persistent storage. Otherwise, the player object does not save the credentials.
- MFP_CREDENTIAL_DO_NOT_CACHE
-
[out] If the application sets this flag, the player object does not cache the user credentials in memory. Otherwise, the player object does not cache the credentials. If you set this flag, do not set the MFP_CREDENTIAL_SAVE flag.
- MFP_CREDENTIAL_CLEAR_TEXT
-
The credentials will be sent in clear text. The application should warn the user that the credentials will be sent over the network without encryption.
[out] On output, set this flag to allow the player object to send credentials in clear text, without prompting the user to re-enter the credentials.
- MFP_CREDENTIAL_PROXY
-
The credentials will be used to authenticate with a proxy.
- MFP_CREDENTIAL_LOGGED_ON_USER
-
The authentication scheme supports authentication of the user who is currently logged on.
Requirements
|
Minimum supported client |
Windows 7 [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows Server 2008 R2 [desktop apps only] |
|
Header |
|
|
IDL |
|
See also