Skip to content

newgroundsiodotnet.components.interfaces.ingiocomponentrequest

GlitchyPSIX edited this page Mar 30, 2025 · 3 revisions

INgioComponentRequest

Namespace: NewgroundsIODotNet.Components.Interfaces

public interface INgioComponentRequest

Properties

Component

Component's name.

public abstract string Component { get; }

Property Value

String

Parameters

Component's parameters. Only supply manually if you know what you're doing.

public abstract Dictionary<string, object> Parameters { get; }

Property Value

Dictionary<String, Object>

Echo

Value is returned verbatim by the server.

public abstract object Echo { get; set; }

Property Value

Object

RequiresSecureCall

Whether this component will be made into a secure execution call if Encryption is enabled. Stripped from the final JSON.

public abstract bool RequiresSecureCall { get; }

Property Value

Boolean

Clone this wiki locally