Class NamedArg
Named arguments passed as input in a Deploy item.
Assembly: Casper.Network.SDK.dll
Syntax
Constructors
|
Edit this page
View Source
NamedArg(string, CLValue)
Creates a NamedArg object with a CLValue value.
Declaration
public NamedArg(string name, CLValue value)
Parameters
|
Edit this page
View Source
NamedArg(string, GlobalStateKey)
Creates a NamedArg object with a GlobalStateKey value.
Declaration
public NamedArg(string name, GlobalStateKey value)
Parameters
|
Edit this page
View Source
NamedArg(string, PublicKey)
Creates a NamedArg object with a PublicKey value.
Declaration
public NamedArg(string name, PublicKey value)
Parameters
|
Edit this page
View Source
NamedArg(string, URef)
Creates a NamedArg object with a URef value.
Declaration
public NamedArg(string name, URef value)
Parameters
|
Edit this page
View Source
NamedArg(string, bool)
Creates a NamedArg object with a Boolean value.
Declaration
public NamedArg(string name, bool value)
Parameters
|
Edit this page
View Source
NamedArg(string, byte)
Creates a NamedArg object with an U8/byte value.
Declaration
public NamedArg(string name, byte value)
Parameters
|
Edit this page
View Source
NamedArg(string, byte[])
Creates a NamedArg object with a byte array value.
Declaration
public NamedArg(string name, byte[] value)
Parameters
|
Edit this page
View Source
NamedArg(string, int)
Creates a NamedArg object with an Int32 value.
Declaration
public NamedArg(string name, int value)
Parameters
|
Edit this page
View Source
NamedArg(string, long)
Creates a NamedArg object with an Int64 value.
Declaration
public NamedArg(string name, long value)
Parameters
|
Edit this page
View Source
NamedArg(string, BigInteger)
Creates a NamedArg object with a BigInteger value.
Declaration
public NamedArg(string name, BigInteger value)
Parameters
|
Edit this page
View Source
NamedArg(string, string)
Creates a NamedArg object with a string value.
Declaration
public NamedArg(string name, string value)
Parameters
|
Edit this page
View Source
NamedArg(string, uint)
Creates a NamedArg object with an UInt32 value.
Declaration
public NamedArg(string name, uint value)
Parameters
|
Edit this page
View Source
NamedArg(string, ulong)
Creates a NamedArg object with an UInt64 value.
Declaration
public NamedArg(string name, ulong value)
Parameters
Properties
|
Edit this page
View Source
Name
Declaration
public string Name { get; }
Property Value
|
Edit this page
View Source
Value
Declaration
public CLValue Value { get; }
Property Value
Methods
|
Edit this page
View Source
ListFromBytes(byte[])
Declaration
public static IList<NamedArg> ListFromBytes(byte[] bytes)
Parameters
| Type |
Name |
Description |
| byte[] |
bytes |
|
Returns
|
Edit this page
View Source
ListFromReader(BinaryReader)
Declaration
public static IList<NamedArg> ListFromReader(BinaryReader reader)
Parameters
Returns