Casper.Network.SDK
Show / Hide Table of Contents

Class EntryPoint

Type signature of a method. Order of arguments matter since can be referenced by index as well as name.

Inheritance
System.Object
EntryPoint
Namespace: Casper.Network.SDK.Types
Assembly: Casper.Network.SDK.dll
Syntax
public class EntryPoint : object

Properties

Access

Access control options for a contract entry point

Declaration
public EntryPointAccess Access { get; set; }
Property Value
Type Description
EntryPointAccess

Args

List of input parameters to the method. Order of arguments matter since can be referenced by index as well as name.

Declaration
public List<Parameter> Args { get; set; }
Property Value
Type Description
List<Parameter>

EntryPointType

Context of method execution

Declaration
public EntryPointType EntryPointType { get; set; }
Property Value
Type Description
EntryPointType

Name

Name of the entry point

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

Ret

Returned value

Declaration
public CLTypeInfo Ret { get; set; }
Property Value
Type Description
CLTypeInfo
In This Article
Back to top Maintained by MAKE Technology LLC