System.Xml.Xsl.IlGen.XmlILModule.XmlILModule C# (CSharp) Method

XmlILModule() static private method

static private XmlILModule ( ) : System.Collections
return System.Collections
        static XmlILModule()
        {
            AssemblyName asmName;
            AssemblyBuilder asmBldr;

            s_assemblyId = 0;

            // 1. LRE assembly only needs to execute
            // 2. No temp files need be created
            // 3. Never allow assembly to Assert permissions
            asmName = CreateAssemblyName();
            asmBldr = AssemblyBuilder.DefineDynamicAssembly(asmName, AssemblyBuilderAccess.Run);

            try
            {
                // Add custom attribute to assembly marking it as security transparent so that Assert will not be allowed
                // and link demands will be converted to full demands.
                asmBldr.SetCustomAttribute(new CustomAttributeBuilder(XmlILConstructors.Transparent, new object[] { }));

                // Store LREModule once.  If multiple threads are doing this, then some threads might get different
                // modules.  This is OK, since it's not mandatory to share, just preferable.
                s_LREModule = asmBldr.DefineDynamicModule("System.Xml.Xsl.CompiledQuery");
            }
            finally
            {
            }
        }

Same methods

XmlILModule::XmlILModule ( TypeBuilder typeBldr ) : System.Collections
XmlILModule::XmlILModule ( bool useLRE, bool emitSymbols ) : System.Collections