Checkin() public method

Checkin a single object by using its path
public Checkin ( string path ) : void
path string /// A ///
return void
Example #1
0
        public static void CheckinObject(string filePath, string storePath)
        {
            ObjectStore store = new ObjectStore (storePath);
            store.Checkin (filePath);

            store.Write ();
        }