I’m using SharpSVN.
I have to delete the SVN authentication credentials stored in the PC.
I try with
using (SvnClient client = new SvnClient())
{
// Clear predefined handlers and previous authentication
client.Authentication.Clear();
}
it delete credential for the during of program, but it doesn't delete the credentials data stored in the computer.
Someone now how to do it?
Thanks!!