You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Save the credential to the credential managerCredentialManager.WriteCredential(applicationName:"CredentialManagerTests",userName:"meziantou",secret:"Pa$$w0rd",comment:"Test",persistence:CredentialPersistence.LocalMachine);// Get a credential from the credential managervarcred=CredentialManager.ReadCredential(applicationName:"CredentialManagerTests");Console.WriteLine(cred.UserName);Console.WriteLine(cred.Password);// Delete a credential from the credential managerCredentialManager.DeleteCredential(applicationName:"CredentialManagerTests");