GetPresentationData() public method

public GetPresentationData ( Profiles.Framework.Utilities.RDFTriple request ) : XmlDocument
request Profiles.Framework.Utilities.RDFTriple
return System.Xml.XmlDocument
示例#1
0
        public void LoadPageData()
        {
            Framework.Utilities.Namespace namespaces = new Namespace();

            Profiles.Profile.Utilities.DataIO data = new Profiles.Profile.Utilities.DataIO();
            this.PresentationXML = data.GetPresentationData(this.RDFTriple);

            XmlNode x = this.PresentationXML.SelectSingleNode("Presentation[1]/ExpandRDFList[1]");

            if (x != null)
                this.RDFTriple.ExpandRDFList = x.OuterXml;

            this.RDFData = data.GetRDFData(this.RDFTriple);

            this.RDFNamespaces = namespaces.LoadNamespaces(this.RDFData);
        }
示例#2
0
        public void LoadPageData()
        {
            Framework.Utilities.Namespace namespaces = new Namespace();

            Profiles.Profile.Utilities.DataIO data = new Profiles.Profile.Utilities.DataIO();
            this.PresentationXML = data.GetPresentationData(this.RDFTriple);

            XmlNode x = this.PresentationXML.SelectSingleNode("Presentation[1]/ExpandRDFList[1]");

            if (x != null)
            {
                this.RDFTriple.ExpandRDFList = x.OuterXml;
            }

            this.RDFData = data.GetRDFData(this.RDFTriple);



            this.RDFNamespaces = namespaces.LoadNamespaces(this.RDFData);
        }
示例#3
0
 public void LoadPresentationXML()
 {
     Profiles.Profile.Utilities.DataIO data = new Profiles.Profile.Utilities.DataIO();
     this.PresentationXML = data.GetPresentationData(this.RDFTriple);
 }
示例#4
0
 public void LoadPresentationXML()
 {
     Profiles.Profile.Utilities.DataIO data = new Profiles.Profile.Utilities.DataIO();
     this.PresentationXML = data.GetPresentationData(this.RDFTriple);
 }