ToString() 공개 메소드

Returns a System.String that represents the current CmisSync.Lib.Events.FSEvent.
public ToString ( ) : string
리턴 string
예제 #1
0
 public void FSEventTest() {
     ISyncEvent e = new FSEvent(WatcherChangeTypes.Created, "test");
     Assert.AreEqual("FSEvent with type \"Created\" on path \"test\"",e.ToString());
 }