示例#1
0
        public static IRemoteSystemConfig BuildRemoteSystemConfig(IMonitorSystemContext context, string xml)
        {
            CRemoteSystemConfig config = new CRemoteSystemConfig();

            config.SystemContext = context;
            if (config.BuildConfig(xml))
            {
                return(config);
            }
            else
            {
                return(null);
            }
        }