Esempio n. 1
0
        protected override void ResolveResponseBody(XmlNode node)
        {
            TGetDeviceTagsRspBody reponse =
                TGetDeviceTagsRspBody.LoadFromXMLNode(node);

            if (reponse != null)
            {
                bodyResponse = reponse;
            }
        }
Esempio n. 2
0
        public static TGetDeviceTagsRspBody LoadFromXMLNode(XmlNode node)
        {
            TGetDeviceTagsRspBody rlt = new TGetDeviceTagsRspBody();

            rlt = IRAPXMLUtils.LoadValueFromXMLNode(GetEX(node), rlt) as TGetDeviceTagsRspBody;
            XmlNode paramxml = GetRspBodyNode(node);

            if (paramxml != null && paramxml.ChildNodes.Count > 0)
            {
                foreach (XmlNode child in paramxml.ChildNodes)
                {
                    rlt.Details.Add(TGetDeviceTagsRspDetail.LoadFromXMLNode(child));
                }
            }
            return(rlt);
        }
Esempio n. 3
0
 public TGetDeviceTagsContent()
 {
     bodyResponse = new TGetDeviceTagsRspBody();
     bodyRequest  = new TGetDeviceTagsReqBody();
 }