示例#1
0
 /// <summary>
 /// Sends the path to the IPC-Server.
 /// </summary>
 /// <param name="Path">The path.</param>
 /// <remarks>Documented by Dev05, 2007-11-28</remarks>
 public static void SendPathToIPC(string Path)
 {
     RemotingConfiguration.RegisterWellKnownClientType(typeof(GlobalDictionaryLoader), ClientURL);
     GlobalDictionaryLoader loader = new GlobalDictionaryLoader();
     loader.LoadDictionary(Path);
 }