-
Notifications
You must be signed in to change notification settings - Fork 0
newgroundsiodotnet.components.interfaces.ingiocomponentrequest
GlitchyPSIX edited this page Mar 30, 2025
·
3 revisions
Namespace: NewgroundsIODotNet.Components.Interfaces
public interface INgioComponentRequest
Component's name.
public abstract string Component { get; }
Component's parameters. Only supply manually if you know what you're doing.
public abstract Dictionary<string, object> Parameters { get; }
Value is returned verbatim by the server.
public abstract object Echo { get; set; }
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; }