Getting Information about the Assembly

To configure a MOM managed code response, you must know several details about the assembly and the signature of the method you are calling.

MSIL Disassembler (ILDASM.exe) is a tool included with the .NET Framework SDK and Visual Studio .NET for viewing the Microsoft intermediate language (MSIL) code in an assembly. To view the MSIL data and instructions stored in your assembly:

  1. Open the Visual Studio .NET command prompt.

  2. Browse to the folder containing the assembly.

  3. Run the MSIL Disassembler tool using the following command:

    ILDASM.exe [assembly file]
    
  4. The MSIL Disassembler will display information about the assembly.

  5. Browse to the method you are calling in the response. The MSIL Disassembler will display both the name and type of each parameter it accepts.

See Also

.NET Framework Tools at MSDN Online | Viewing Assembly Contents at MSDN Online