Skip to content

API Host TypeAccess

Liu.Yandong.Hanks edited this page Aug 21, 2026 · 3 revisions

TypeAccess

Controls constructor and static-member access for registered CLR types.

Namespace: AuroraScript.Runtime.Interop. Kind: enum.

Back to .NET Host API Reference

Overview

Controls constructor and static-member access for registered CLR types.

Values

TypeAccess.Constructor

Allows public instance constructors.

var value = TypeAccess.Constructor;

TypeAccess.Static

Allows public static properties, fields, and methods.

var value = TypeAccess.Static;

TypeAccess.All

Allows both constructors and static members.

var value = TypeAccess.All;

Clone this wiki locally