CReplicationServer cssSvr = new CReplicationServerClass(); cssSvr.Initialize(Environment.MachineName);
// project name CReplicationProject csPrj = (CReplicationProject)cssSvr.OpenProject("Test", CSS_PROJECT_CREATION.OPEN_EXISTING_PROJECT);
object dummy = new object(); dummy = 0;
while ((int)dummy != -1) { CReplicationSchedule csSchd = (CReplicationSchedule)csPrj.EnumSchedules(ref dummy); Console.WriteLine(csSchd.Description.ToString()); } |