AsyncServerForm.SwarmMemory.sourceCodeChanged C# (CSharp) Method

sourceCodeChanged() public method

public sourceCodeChanged ( int dellineno, int addlineno, string addstring ) : void
dellineno int
addlineno int
addstring string
return void
        public void sourceCodeChanged(int dellineno, int addlineno, string addstring)
        {
            string codechange = "<masterSourceChange>" +"<Pid>"+Pid.ToString()+"</Pid>"+ "<delete>" + dellineno.ToString() + "</delete>" + "<add>" + addlineno.ToString() + "</add>" + "<addstring>" + addstring + "</addstring>" + "</masterSorurceChange>";
            //find the master machine
            //senderfunction(mastermachine,codechange);            
        }
        public bool writePrivilege(string uname)