CredentialPickerOptions.CallerSavesCredential Property
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.
Gets or sets whether the caller wants to save the credentials.
public:
property bool CallerSavesCredential { bool get(); void set(bool value); };
bool CallerSavesCredential();
void CallerSavesCredential(bool value);
public bool CallerSavesCredential { get; set; }
var boolean = credentialPickerOptions.callerSavesCredential;
credentialPickerOptions.callerSavesCredential = boolean;
Public Property CallerSavesCredential As Boolean
Property Value
bool
Gets or sets whether the caller wants to save the credentials. The default value is False.
Remarks
If CallerSavesCredential is False and the user checks the Save Credentials check box, the entered credentials are stored in Credential Manager by default. However, if CallerSavesCredential is set to True and the user checks the Save Credentials check box, it is up to caller to store the entered credentials securely. For secure credential storage, please refer to Credential Locker.