internal ReferenceIdentity(System.Deployment.Internal.Isolation.IReferenceIdentity i)
 {
     if (i == null)
     {
         throw new ArgumentNullException();
     }
     this._id = i;
 }
Example #2
0
 internal ReferenceIdentity(System.Deployment.Internal.Isolation.IReferenceIdentity i)
 {
     if (i == null)
     {
         throw new ArgumentNullException();
     }
     this._id = i;
 }
Example #3
0
 public bool MoveNext()
 {
     if (this._enum.Next(1, this._fetchList) == 1)
     {
         this._current = this._fetchList[0];
         return(true);
     }
     this._current = null;
     return(false);
 }
 public bool MoveNext()
 {
     if (this._enum.Next(1, this._fetchList) == 1)
     {
         this._current = this._fetchList[0];
         return true;
     }
     this._current = null;
     return false;
 }
        public System.Deployment.Internal.Isolation.StoreCategoryEnumeration EnumCategories(EnumCategoriesFlags Flags, System.Deployment.Internal.Isolation.IReferenceIdentity CategoryMatch)
        {
            Guid guidOfType = System.Deployment.Internal.Isolation.IsolationInterop.GetGuidOfType(typeof(System.Deployment.Internal.Isolation.IEnumSTORE_CATEGORY));

            return(new System.Deployment.Internal.Isolation.StoreCategoryEnumeration((System.Deployment.Internal.Isolation.IEnumSTORE_CATEGORY) this._pStore.EnumCategories((uint)Flags, CategoryMatch, ref guidOfType)));
        }
        public System.Deployment.Internal.Isolation.StoreAssemblyEnumeration EnumAssemblies(EnumAssembliesFlags Flags, System.Deployment.Internal.Isolation.IReferenceIdentity refToMatch)
        {
            Guid guidOfType = System.Deployment.Internal.Isolation.IsolationInterop.GetGuidOfType(typeof(System.Deployment.Internal.Isolation.IEnumSTORE_ASSEMBLY));

            return(new System.Deployment.Internal.Isolation.StoreAssemblyEnumeration((System.Deployment.Internal.Isolation.IEnumSTORE_ASSEMBLY) this._pStore.EnumAssemblies((uint)Flags, refToMatch, ref guidOfType)));
        }
        public System.Deployment.Internal.Isolation.Manifest.ICMS BindReferenceToAssemblyManifest(uint Flags, System.Deployment.Internal.Isolation.IReferenceIdentity ReferenceIdentity, uint cDeploymentsToIgnore, System.Deployment.Internal.Isolation.IDefinitionIdentity[] DefinitionIdentity_DeploymentsToIgnore)
        {
            Guid riid = System.Deployment.Internal.Isolation.IsolationInterop.IID_ICMS;

            return((System.Deployment.Internal.Isolation.Manifest.ICMS) this._pStore.BindReferenceToAssembly(Flags, ReferenceIdentity, cDeploymentsToIgnore, DefinitionIdentity_DeploymentsToIgnore, ref riid));
        }
Example #8
0
 public void Reset()
 {
     this._current = null;
     this._enum.Reset();
 }
 public void Reset()
 {
     this._current = null;
     this._enum.Reset();
 }