System.Runtime.CompilerServ ...


.NET Framework Class Library
SuppressIldasmAttribute Class

Prevents the MSIL Disassembler (Ildasm.exe) from disassembling an assembly. This class cannot be inherited.

Namespace:  System.Runtime.CompilerServices
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic (Declaration)
<AttributeUsageAttribute(AttributeTargets.Assembly Or AttributeTargets.Module)> _
Public NotInheritable Class SuppressIldasmAttribute _
    Inherits Attribute
Visual Basic (Usage)
Dim instance As SuppressIldasmAttribute
C#
[AttributeUsageAttribute(AttributeTargets.Assembly|AttributeTargets.Module)]
public sealed class SuppressIldasmAttribute : Attribute
Visual C++
[AttributeUsageAttribute(AttributeTargets::Assembly|AttributeTargets::Module)]
public ref class SuppressIldasmAttribute sealed : public Attribute
JScript
public final class SuppressIldasmAttribute extends Attribute
Remarks

Apply the SuppressIldasmAttribute attribute to an assembly or module to prevent the assembly or module from being disassembled using the MSIL Disassembler (Ildasm.exe).

This attribute does not prevent an assembly from being viewed using reflection.

Note that SuppressIldasmAttribute attribute does not block the MSIL Disassembler (Ildasm.exe) from viewing header information and meta-information.

Examples

The following code example demonstrates how to apply the SuppressIldasmAttribute attribute to an assembly.

Visual Basic
Imports System
Imports System.Runtime.CompilerServices



<Assembly: SuppressIldasmAttribute()> 


Class Program

    Shared Sub Main(ByVal args() As String)
        Console.WriteLine("The SuppressIldasmAttribute is applied to this assembly.")

    End Sub
End Class

C#
using System;
using System.Runtime.CompilerServices;

[assembly: SuppressIldasmAttribute()]
class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("The SuppressIldasmAttribute is applied to this assembly.");

    }

}
Inheritance Hierarchy

System..::.Object
  System..::.Attribute
    System.Runtime.CompilerServices..::.SuppressIldasmAttribute
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference

Tags :


Page view tracker