Skip to main content

IArgument

Namespace: IotaSdk

An argument to a programmable transaction command

BCS

The BCS serialized form for this type is defined by the following ABNF:

argument = argument-gas
=/ argument-input
=/ argument-result
=/ argument-nested-result

argument-gas = %d00
argument-input = %d01 u16
argument-result = %d02 u16
argument-nested-result = %d03 u16 u16
public interface IArgument : System.IEquatable`1[[IotaSdk.Argument, IotaSdk, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]

Implements IEquatable<Argument>
Attributes NullableContextAttribute

Methods

GetNestedResult(UInt16)

Get the nested result for this result at the given index. Returns None if this is not a Result.

Argument? GetNestedResult(ushort ix)

Parameters

ix UInt16

Returns

Argument?