예제 #1
0
        public static IVideoSourceType BuildVideoSourceType(IMonitorSystemContext context, string xml)
        {
            CVideoSourceType config = new CVideoSourceType();

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