public void DeleteCredentials(TargetUri targetUri) =>
 store.DeleteCredentials(targetUri);
Пример #2
0
 /// <summary>
 /// Delete stored credential.
 /// </summary>
 /// <param name="target">Name of the application/URL the credential is used for.</param>
 /// <returns>True if successfully deleted, false otherwise.</returns>
 public bool Delete(Uri target)
 {
     return(store.DeleteCredentials(target));
 }