예제 #1
0
 /// <summary>
 /// Threaded method to connect the node due to problems with the gui
 /// </summary>
 /// <param name="NodeLinkID"></param>
 /// <param name="LinkedUniqueID"></param>
 private void ThreadedConnectNode(int NodeLinkID, string LinkedUniqueID)
 {
     lock (_connectNode)
     {
         ActiveConnections.Add(NodeLinkID, LinkedUniqueID);
         db.AddConnection(this.UniqueID, NodeLinkID, LinkedUniqueID);
     }
 }