Bearbeiten

ReflectionPermissionAttribute.ReflectionEmit Property

Definition

Caution

This API is now deprecated.

Caution

ReflectionPermissionAttribute.ReflectionEmit has been deprecated and is not supported.

Caution

This permission is no longer used by the CLR.

Gets or sets a value that indicates whether use of certain features in System.Reflection.Emit, such as emitting debug symbols, is allowed.

public:
 property bool ReflectionEmit { bool get(); void set(bool value); };
[System.Obsolete]
public bool ReflectionEmit { get; set; }
[System.Obsolete("ReflectionPermissionAttribute.ReflectionEmit has been deprecated and is not supported.")]
public bool ReflectionEmit { get; set; }
public bool ReflectionEmit { get; set; }
[System.Obsolete("This permission is no longer used by the CLR.")]
public bool ReflectionEmit { get; set; }
[<System.Obsolete>]
member this.ReflectionEmit : bool with get, set
[<System.Obsolete("ReflectionPermissionAttribute.ReflectionEmit has been deprecated and is not supported.")>]
member this.ReflectionEmit : bool with get, set
member this.ReflectionEmit : bool with get, set
[<System.Obsolete("This permission is no longer used by the CLR.")>]
member this.ReflectionEmit : bool with get, set
Public Property ReflectionEmit As Boolean

Property Value

true if use of the affected features is allowed; otherwise, false.

Attributes

Remarks

Note

Starting with the .NET Framework 2.0 Service Pack 1, emitting code no longer requires ReflectionPermission with the ReflectionPermissionFlag.ReflectionEmit flag. Some features of reflection emit, such as emitting debug symbols, still require 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.

Applies to