Skip to content

API Host DebuggerScriptSerializer

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

DebuggerScriptSerializer

JSON serializer variant intended for debugger inspection.

Namespace: AuroraScript.Runtime.Serialization. Kind: class.

Back to .NET Host API Reference

Overview

DebuggerScriptSerializer is a ScriptJsonSerializer implementation shaped for inspection rather than data exchange. Use it through the base-type API, or install it as the runtime serializer through EngineOptions.WithRuntime.

Note

The schema records no additional public members for this type; its surface is the inherited ScriptJsonSerializer API.

Quick Reference

A minimal use of DebuggerScriptSerializer.

ScriptJsonSerializer serializer = new DebuggerScriptSerializer();
var json = serializer.Serialize(ScriptDatum.FromNumber(42));

Related APIs

Clone this wiki locally