示例#1
0
        public XCdwConnection(DataSource ds)
            : base(ds)
        {
            SaveToFile = false;

            MockXmlSource xml = new MockXmlSource(ds.SiteId.Id);
        }
示例#2
0
 public void setXmlSource(string siteId, bool updateRpc)
 {
     if (null != xmlSource)
     {
         xmlSource = null;
     }
     xmlSource = new MockXmlSource(siteId, updateRpc);
 }
示例#3
0
        public void setXmlSource(string siteId)
        {
            if (null != xmlSource)
            {
                xmlSource = null;
            }

               xmlSource = new MockXmlSource(siteId);
        }