MethodBuilder.IsSecurityCritical Property

Definition

Throws a NotSupportedException in all cases.

public:
 virtual property bool IsSecurityCritical { bool get(); };
public override bool IsSecurityCritical { get; }
member this.IsSecurityCritical : bool
Public Overrides ReadOnly Property IsSecurityCritical As Boolean

Property Value

Throws a NotSupportedException in all cases.

Exceptions

In all cases. This property is not supported in dynamic assemblies.

Remarks

To determine whether a method in a dynamic assembly is security-critical, complete the type by calling TypeBuilder.CreateType, call the GetMethod method on the completed type, and get the IsSecurityCritical property on the resulting MethodInfo.

Applies to