AssemblyBuilder Methods

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

The AssemblyBuilder type exposes the following members.

Methods

  Name Description
Public method CreateInstance Locates the specified type from this assembly and creates an instance of it using the system activator, using case-sensitive search. (Inherited from Assembly.)
Public method DefineDynamicModule(String) Defines a named transient dynamic module in this assembly.
Public method DefineDynamicModule(String, Boolean) Defines a named transient dynamic module in this assembly and specifies whether symbol information should be emitted.
Public method Equals Returns a value that indicates whether this instance is equal to the specified object. (Overrides Object.Equals(Object).)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public method GetCustomAttributes(Boolean) Returns all the custom attributes that have been applied to the current AssemblyBuilder. (Overrides Assembly.GetCustomAttributes(Boolean).)
Public method GetCustomAttributes(Type, Boolean) Returns all the custom attributes that have been applied to the current AssemblyBuilder, and that derive from a specified attribute type. (Overrides Assembly.GetCustomAttributes(Type, Boolean).)
Public method GetDynamicModule Returns the dynamic module that has the specified name.
Public method GetExportedTypes Gets the exported types that are defined in this assembly. (Overrides Assembly.GetExportedTypes().)
Public method GetFile Security Critical. Gets a FileStream for the specified file in the file table of the manifest of this assembly. (Inherited from Assembly.)
Public method GetFiles Security Critical. Gets the files in the file table of an assembly manifest, specifying whether to include resource modules. (Inherited from Assembly.)
Public method GetHashCode Returns the hash code for this instance. (Overrides Object.GetHashCode().)
Public method GetManifestResourceNames Loads the names of the manifest resources in this assembly. (Overrides Assembly.GetManifestResourceNames().)
Public method GetManifestResourceStream(String) Loads the specified manifest resource from this assembly. (Overrides Assembly.GetManifestResourceStream(String).)
Public method GetManifestResourceStream(Type, String) Loads the specified manifest resource, scoped by the namespace of the specified type, from this assembly. (Overrides Assembly.GetManifestResourceStream(Type, String).)
Public method GetModules Gets all the modules that are part of this assembly. (Inherited from Assembly.)
Public method GetName Security Critical. Gets the AssemblyName that was specified when the current dynamic assembly was created, and sets the code base as specified. (Overrides Assembly.GetName(Boolean).)
Public method GetSatelliteAssembly(CultureInfo) Gets the satellite assembly for the specified culture. (Overrides Assembly.GetSatelliteAssembly(CultureInfo).)
Public method GetSatelliteAssembly(CultureInfo, Version) Gets the specified version of the satellite assembly for the specified culture. (Overrides Assembly.GetSatelliteAssembly(CultureInfo, Version).)
Public method GetType() Gets the Type of the current instance. (Inherited from Object.)
Public method GetType(String) Gets the Type object with the specified name in the assembly instance. (Inherited from Assembly.)
Public method GetType(String, Boolean) Gets the Type object with the specified name in the assembly instance and optionally throws an exception if the type is not found. (Inherited from Assembly.)
Public method GetTypes Gets the types defined in this assembly. (Inherited from Assembly.)
Public method IsDefined Returns a value that indicates whether one or more instances of the specified attribute type is applied to this member. (Overrides Assembly.IsDefined(Type, Boolean).)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method SetCustomAttribute Sets a custom attribute on this assembly by using a custom attribute builder.
Public method ToString Returns the full name of the assembly, also known as the display name. (Inherited from Assembly.)

Top