private RPCConfig DeserializeRPCConfig(XmlNode root) { var config = new RPCConfig(); var section = root.SelectSingleNode("rpc"); if (section == null) { return(config); } config.LoadFrom(section); return(config); }
internal EasyMQConfiguration() { this.EventConfig = new EventConfig(); this.RPCConfig = new RPCConfig(); }