I want to use the status method but i dont understand how it works. Could someone show me an example of use please?
EventHandler < SvnStatusEventArgs > statusHandler = new EventHandler<SvnStatusEventArgs>(void(object, SvnStatusEventArgs) target);
client.Status(path, statusHandler);
Well, it’ll work exactly like the
svn statuscommand : http://svnbook.red-bean.com/en/1.0/re26.htmlYou’ll get the list of files pumped to the EventHandler: