Exemplo n.º 1
0
 public override void Execute(string value, KeyValuePair<Command, string> neededCommand)
 {
     ConfigStream stream = new ConfigStream(value);
     ((MemoryCommand)neededCommand.Key).Execute(neededCommand.Value);
     stream.Write(((MemoryCommand)neededCommand.Key).MemoryData);
     base.Execute(value);
 }
Exemplo n.º 2
0
        public override void Execute(string value, KeyValuePair <Command, string> neededCommand)
        {
            ConfigStream stream = new ConfigStream(value);

            ((MemoryCommand)neededCommand.Key).Execute(neededCommand.Value);
            stream.Write(((MemoryCommand)neededCommand.Key).MemoryData);
            base.Execute(value);
        }
Exemplo n.º 3
0
 private void Close(object sender, EventArgs e)
 {
     _confiStream.Write(_config);
 }