System.GAC.AssemblyCache.CreateAssemblyCache C# (CSharp) Method

CreateAssemblyCache() private method

private CreateAssemblyCache ( IAssemblyCache &ppAsmCache, uint dwReserved ) : void
ppAsmCache IAssemblyCache
dwReserved uint
return void
        static extern void CreateAssemblyCache(out IAssemblyCache ppAsmCache, uint dwReserved);

Same methods

AssemblyCache::CreateAssemblyCache ( ) : IAssemblyCache

Usage Example

Esempio n. 1
0
        /// <summary>
        /// Use this method as a start for the GAC API
        /// </summary>
        /// <returns>IAssemblyCache COM interface</returns>
        public static IAssemblyCache CreateAssemblyCache()
        {
            IAssemblyCache ac;

            AssemblyCache.CreateAssemblyCache(out ac, 0);

            return(ac);
        }