Class InputResponse
Data class to warp around the response returned by the Input debug action
Inheritance
System.Object
InputResponse
Assembly: com.bennykok.runtime-debug-action.dll
public class InputResponse
Constructors
Declaration
public InputResponse(Dictionary<Param, string> responses, InputQuery query)
Parameters
Type |
Name |
Description |
System.Collections.Generic.Dictionary<Param, System.String> |
responses |
|
InputQuery |
query |
|
Fields
Declaration
public Dictionary<Param, string> responses
Field Value
Type |
Description |
System.Collections.Generic.Dictionary<Param, System.String> |
|
Properties
Declaration
public bool AllInputValid { get; }
Property Value
Type |
Description |
System.Boolean |
|
Methods
Declaration
public object[] GetObjectsForReflection(bool fillMissing = true)
Parameters
Type |
Name |
Description |
System.Boolean |
fillMissing |
|
Returns
Type |
Description |
System.Object[] |
|
Declaration
public KeyValuePair<Param, string> GetParam(string paramName)
Parameters
Type |
Name |
Description |
System.String |
paramName |
|
Returns
Type |
Description |
System.Collections.Generic.KeyValuePair<Param, System.String> |
|
Declaration
public bool GetParamBool(KeyValuePair<Param, string> entry)
Parameters
Type |
Name |
Description |
System.Collections.Generic.KeyValuePair<Param, System.String> |
entry |
|
Returns
Type |
Description |
System.Boolean |
|
Declaration
public bool GetParamBool(string paramName)
Parameters
Type |
Name |
Description |
System.String |
paramName |
|
Returns
Type |
Description |
System.Boolean |
|
Declaration
public float GetParamFloat(KeyValuePair<Param, string> entry)
Parameters
Type |
Name |
Description |
System.Collections.Generic.KeyValuePair<Param, System.String> |
entry |
|
Returns
Type |
Description |
System.Single |
|
Declaration
public float GetParamFloat(string paramName)
Parameters
Type |
Name |
Description |
System.String |
paramName |
|
Returns
Type |
Description |
System.Single |
|
Declaration
public int GetParamInt(KeyValuePair<Param, string> entry)
Parameters
Type |
Name |
Description |
System.Collections.Generic.KeyValuePair<Param, System.String> |
entry |
|
Returns
Type |
Description |
System.Int32 |
|
Declaration
public int GetParamInt(string paramName)
Parameters
Type |
Name |
Description |
System.String |
paramName |
|
Returns
Type |
Description |
System.Int32 |
|
Declaration
public string GetParamString(KeyValuePair<Param, string> entry)
Parameters
Type |
Name |
Description |
System.Collections.Generic.KeyValuePair<Param, System.String> |
entry |
|
Returns
Type |
Description |
System.String |
|
Declaration
public string GetParamString(string paramName)
Parameters
Type |
Name |
Description |
System.String |
paramName |
|
Returns
Type |
Description |
System.String |
|