Class DelegatesQuery
Rpc query to access all registered delegates
Inheritance
System.Object
DelegatesQuery
Assembly: Netezos.dll
Syntax
public class DelegatesQuery : RpcObject
Properties
|
Improve this Doc
View Source
Item[String]
Gets the query to the complete status of a delegate by address
Declaration
public DelegateQuery this[string address] { get; }
Parameters
Type |
Name |
Description |
System.String |
address |
Address of the delegate
|
Property Value
Methods
|
Improve this Doc
View Source
GetAsync()
Executes the query and returns all registered delegates
Declaration
public Task<dynamic> GetAsync()
Returns
Type |
Description |
Task<System.Object> |
|
|
Improve this Doc
View Source
GetAsync(DelegateStatus)
Executes the query and returns all registered delegates with the specified status
Declaration
public Task<dynamic> GetAsync(DelegateStatus status)
Parameters
Type |
Name |
Description |
DelegateStatus |
status |
Status of the delegates to return
|
Returns
Type |
Description |
Task<System.Object> |
|
|
Improve this Doc
View Source
GetAsync<T>()
Executes the query and returns all registered delegates
Declaration
public Task<T> GetAsync<T>()
Returns
Type Parameters
|
Improve this Doc
View Source
GetAsync<T>(DelegateStatus)
Executes the query and returns all registered delegates with the specified status
Declaration
public Task<T> GetAsync<T>(DelegateStatus status)
Parameters
Type |
Name |
Description |
DelegateStatus |
status |
Status of the delegates to return
|
Returns
Type Parameters