  | CredentialDialogIsStoredCredential Property  | 
 
            Gets a value that indicates whether the current credentials were retrieved from a credential store.
            
 
    Namespace: 
   Ookii.Dialogs
    Assembly:
   Ookii.Dialogs (in Ookii.Dialogs.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic bool IsStoredCredential { get; }Public ReadOnly Property IsStoredCredential As Boolean
	Get
public:
property bool IsStoredCredential {
	bool get ();
}member IsStoredCredential : bool with get
Property Value
Type: 
Boolean if the current credentials returned by the 
UserName, 
Password,
            and 
Credentials properties were retrieved from either the application instance credential cache
            or the operating system's credential store; otherwise, 
.
            
Remarks
              You can use this property to determine if the credentials dialog was shown after a call to ShowDialog.
              If the dialog was shown, this property will be ; if the credentials were retrieved from the
              application instance cache or the credential store and the dialog was not shown it will be .
            
              If the ShowUIForSavedCredentials property is set to , and the dialog is shown
              but populated with stored credentials, this property will still return .
            
See Also