When using a simple command line svn client, if you run update you can see the changes that were made to your working copy.
update
I\'ve been trying to do so
You can subscribe to the Notify event, on SvnUpdateArgs or on the client instance itself:
Notify
SvnUpdateArgs
SvnUpdateArgs ua = new SvnUpdateArgs(); ua.Notify += delegate(object sender, SvnNotifyEventArgs e) { Console.Write(e.Action); Console.WriteLine(e.FullPath); };