Assembly.ReflectionOnly Property

Definition

Gets a Boolean value indicating whether this assembly was loaded into the reflection-only context.

public:
 virtual property bool ReflectionOnly { bool get(); };
public virtual bool ReflectionOnly { get; }
[System.Runtime.InteropServices.ComVisible(false)]
public virtual bool ReflectionOnly { get; }
member this.ReflectionOnly : bool
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.ReflectionOnly : bool
Public Overridable ReadOnly Property ReflectionOnly As Boolean

Property Value

true if the assembly was loaded into the reflection-only context, rather than the execution context; otherwise, false.

Attributes

Remarks

If an assembly has been loaded into the reflection-only context, using the ReflectionOnlyLoad method, you cannot execute code in the assembly. To execute code, the assembly must be loaded into the execution context.

Applies to