ANHMonitor.frmMonitor.zonedathomir C# (CSharp) 메소드

zonedathomir() 공개 메소드

public zonedathomir ( ) : void
리턴 void
        public void zonedathomir()
        {
            dathomirzone = new ProcessCaller(this);
            dathomirzone.FileName = "zoneserver.exe";
            dathomirzone.WorkingDirectory = "";
            dathomirzone.Arguments = "dathomir";
            dathomirzone.StdErrReceived += new DataReceivedHandler(writeDathomirStreamInfo);
            dathomirzone.StdOutReceived += new DataReceivedHandler(writeDathomirStreamInfo);
            dathomirzone.Completed += new EventHandler(dathomirCompleted);
            dathomirzone.Cancelled += new EventHandler(dathomirCanceled);
            dathomirzone.Start();
            //flgDathomirStarted = true;
        }