Class CommentUpdate
Provides the information for updating the specific comment ID.
Inherited Members
Namespace: Unity.Cloud.Annotation
Syntax
public class CommentUpdate : ICommentUpdate
Constructors
CommentUpdate()
Initializes and returns an instance of CommentUpdate.
Declaration
[Obsolete("Use CommentUpdate(IComment comment) instead.")]
public CommentUpdate()
CommentUpdate(IComment)
Initializes and returns an instance of CommentUpdate.
Declaration
public CommentUpdate(IComment comment)
Parameters
| Type | Name | Description |
|---|---|---|
| IComment | comment | The comment to copy data from. |
Properties
Id
Returns the updated comment ID.
Declaration
public Guid Id { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid | The updated comment ID. |
Implements
MarkAsRead
Returns whether to mark the updated comment as read.
Declaration
public bool MarkAsRead { get; set; }
Property Value
| Type | Description |
|---|---|
| Boolean | Whether to mark the updated comment as read. |
Implements
Text
Returns the text content of the updated comment.
Declaration
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| String | The text content of the updated comment. |