Beispiel #1
0
        internal ICMS GetComponentManifest(DefinitionIdentity component)
        {
            object ManifestInteface;

            this._appcontext.GetComponentManifest(0U, component._id, ref IsolationInterop.IID_ICMS, out ManifestInteface);
            return(ManifestInteface as ICMS);
        }
Beispiel #2
0
        public string GetComponentPath(DefinitionIdentity component)
        {
            string PayloadPath;

            this._appcontext.GetComponentPayloadPath(0U, component._id, out PayloadPath);
            return(PayloadPath);
        }
Beispiel #3
0
        internal string GetComponentManifestPath(DefinitionIdentity component)
        {
            object ManifestInteface;

            this._appcontext.GetComponentManifest(0U, component._id, ref IsolationInterop.IID_IManifestInformation, out ManifestInteface);
            string FullPath;

            ((IManifestInformation)ManifestInteface).get_FullPath(out FullPath);
            return(FullPath);
        }
 public string GetComponentPath(DefinitionIdentity component)
 {
     string retval;
     _appcontext.GetComponentPayloadPath(0, component._id, out retval);
     return retval;
 }
 internal string GetComponentManifestPath(DefinitionIdentity component)
 {
     object o;
     string s;
     _appcontext.GetComponentManifest(0, component._id, ref IsolationInterop.IID_IManifestInformation, out o);
     ((IManifestInformation)o).get_FullPath(out s);
     return s;
 }
 internal CMS.ICMS GetComponentManifest(DefinitionIdentity component)
 {
     object o;
     _appcontext.GetComponentManifest(0, component._id, ref IsolationInterop.IID_ICMS, out o);
     return o as CMS.ICMS;
 }