Can any one tell me how to authenticate users(SVN users) for a repository using SharpSVN Library. That repository should only be committed by those users. Thanks
You can also override SSL certificate errors by adding an event handler to SslServerTrustHandlers like this:
SVN_Conn.Authentication.SslServerTrustHandlers += new EventHandler(SVN_SSL_Override);
static void SVN_SSL_Override(object sender, SharpSvn.Security.SvnSslServerTrustEventArgs e)
{
e.AcceptedFailures = e.Failures;
e.Save = true;
}