Class TableMessage
Represents a message associated with a table, implementing the ITableMessage interface.
Implements
Inherited Members
Namespace: Innovt.Cloud.Table
Assembly: Innovt.Cloud.dll
Syntax
public class TableMessage : ITableMessage
Constructors
| Edit this page View SourceTableMessage()
Default constructor for TableMessage.
Declaration
public TableMessage()
TableMessage(string)
Constructor for TableMessage with an identifier.
Declaration
public TableMessage(string id)
Parameters
Type | Name | Description |
---|---|---|
string | id | The unique identifier for the message. |
TableMessage(string, string)
Constructor for TableMessage with an identifier and a range key.
Declaration
public TableMessage(string id, string rangeKey)
Parameters
Type | Name | Description |
---|---|---|
string | id | The unique identifier for the message. |
string | rangeKey | The range key for the message. |
Properties
| Edit this page View SourceId
Gets or sets the unique identifier for the message.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
RangeKey
Gets or sets the range key associated with the message.
Declaration
public string RangeKey { get; set; }
Property Value
Type | Description |
---|---|
string |