Class AppendFileParams
File content append parameters.
Inherited Members
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public sealed class AppendFileParams
Properties
| Improve this Doc View SourceContents
The content to append to the file, in bytes.
Declaration
public ReadOnlyMemory<byte> Contents { get; set; }
Property Value
Type | Description |
---|---|
ReadOnlyMemory<Byte> |
File
The file receiving the appended content.
Declaration
public Address File { get; set; }
Property Value
Type | Description |
---|---|
Address |
Signatory
Additional private key, keys or signing callback method required to append to this file. Typically matches the Endorsement associated with this file.
Declaration
public Signatory Signatory { get; set; }
Property Value
Type | Description |
---|---|
Signatory |
Remarks
Keys/callbacks added here will be combined with those already identified in the client object's context when signing this transaction to change the state of this account. They will not be asked to sign transactions to retrieve the record if the "WithRecord" form of the method call is made. The client will rely on the Signatory from the context to sign the transaction requesting the record.