Example #1
0
 internal void UpdateConnectionReferences(string oldName, string newName)
 {
     foreach (string name in _taskDict.Keys)
     {
         var proc = _taskDict[name];
         if (typeof(IFdoSpecializedEtlProcess).IsAssignableFrom(proc.GetType()))
         {
             IFdoSpecializedEtlProcess fp = (IFdoSpecializedEtlProcess)proc;
             fp.UpdateConnectionReferences(oldName, newName);
         }
     }
 }