ModuleBuilder.DefineUnmanagedResource Method (String)
Defines an unmanaged resource given the name of Win32 resource file.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- resourceFileName
- Type: System.String
The name of the unmanaged resource file.
| Exception | Condition |
|---|---|
| ArgumentException | An unmanaged resource has already been defined in the module's assembly. -or- resourceFileName is the empty string (""). |
| ArgumentNullException | resourceFileName is null. |
| FileNotFoundException | resourceFileName is not found. -or- resourceFileName is a directory. |
An assembly can be associated with only one unmanaged resource. This means that calling DefineVersionInfoResource or DefineUnmanagedResource after either one of the methods was called previously throws ArgumentException. Multiple unmanaged resources need to be merged with a tool such as the Microsoft ResMerge utility (not supplied with the common language runtime).
Note |
|---|
Starting with the .NET Framework 2.0 Service Pack 1, this member no longer requires ReflectionPermission with the ReflectionPermissionFlag.ReflectionEmit flag. (See Security Issues in Reflection Emit.) To use this functionality, your application should target the .NET Framework 3.5 or later. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note