Class TopicMessage
Represents a Topic Message retrieved from a mirror node.
Implements
Inherited Members
Namespace: Hashgraph
Assembly: Hashgraph.dll
Syntax
public sealed class TopicMessage : IEquatable<TopicMessage>
Properties
| Improve this Doc View SourceConcensus
The consensus timestamp.
Declaration
public DateTime Concensus { get; }
Property Value
Type | Description |
---|---|
DateTime |
Messsage
The content of the message.
Declaration
public ReadOnlyMemory<byte> Messsage { get; }
Property Value
Type | Description |
---|---|
ReadOnlyMemory<Byte> |
RunningHash
A SHA-384 Running Hash of the following: Previous RunningHash, TopicId, ConsensusTimestamp, SequenceNumber and this Message Submission.
Declaration
public ReadOnlyMemory<byte> RunningHash { get; }
Property Value
Type | Description |
---|---|
ReadOnlyMemory<Byte> |
SegmentInfo
Optional metadata that may be attached to an Segmented HCS message identifying the index of the segment and which parent message this segment correlates with.
Declaration
public MessageSegmentInfo SegmentInfo { get; }
Property Value
Type | Description |
---|---|
MessageSegmentInfo |
SequenceNumber
The sequence number of this message submission.
Declaration
public ulong SequenceNumber { get; }
Property Value
Type | Description |
---|---|
UInt64 |
Topic
The Message's Topic.
Declaration
public Address Topic { get; }
Property Value
Type | Description |
---|---|
Address |