Свойство | Type | Description | |
---|---|---|---|
CommentEndpoint | System |
Méthode | Description | |
---|---|---|
CommentEndpoint ( IApiClient apiClient ) : System |
Initializes a new instance of the CommentEndpoint class.
|
|
CreateCommentAsync ( string comment, string galleryItemId, string parentId = null ) : Task |
Creates a new comment, returns the ID of the comment. OAuth authentication required.
|
|
CreateReplyAsync ( string comment, string galleryItemId, string parentId ) : Task |
Create a reply for the given comment, returns the ID of the comment. OAuth authentication required.
|
|
DeleteCommentAsync ( int commentId ) : Task |
Delete a comment by the given id. OAuth authentication required.
|
|
GetCommentAsync ( int commentId ) : Task |
Get information about a specific comment.
|
|
GetRepliesAsync ( int commentId ) : Task |
Get the comment with all of the replies for the comment.
|
|
ReportCommentAsync ( int commentId, ReportReason reason ) : Task |
Report a comment for being inappropriate. OAuth authentication required.
|
|
VoteCommentAsync ( int commentId, VoteOption vote ) : Task |
Vote on a comment. OAuth authentication required.
|
Méthode | Description | |
---|---|---|
CommentEndpoint ( IApiClient apiClient, |
Initializes a new instance of the CommentEndpoint class.
|
public CommentEndpoint ( IApiClient apiClient ) : System | ||
apiClient | IApiClient | The type of client that will be used for authentication. |
Résultat | System |
public CreateCommentAsync ( string comment, string galleryItemId, string parentId = null ) : Task |
||
comment | string | The comment text, this is what will be displayed. |
galleryItemId | string | The ID of the item in the gallery that you wish to comment on. |
parentId | string | The ID of the parent comment, this is an alternative method to create a reply. |
Résultat | Task |
public CreateReplyAsync ( string comment, string galleryItemId, string parentId ) : Task |
||
comment | string | The comment text, this is what will be displayed. |
galleryItemId | string | The ID of the item in the gallery that you wish to comment on. |
parentId | string | The comment id that you are replying to. |
Résultat | Task |
public DeleteCommentAsync ( int commentId ) : Task |
||
commentId | int | The comment id. |
Résultat | Task |
public GetCommentAsync ( int commentId ) : Task |
||
commentId | int | The comment id. |
Résultat | Task |
public GetRepliesAsync ( int commentId ) : Task |
||
commentId | int | The comment id. |
Résultat | Task |
public ReportCommentAsync ( int commentId, ReportReason reason ) : Task |
||
commentId | int | The comment id. |
reason | ReportReason | The reason why the comment is inappropriate. |
Résultat | Task |
public VoteCommentAsync ( int commentId, VoteOption vote ) : Task |
||
commentId | int | The comment id. |
vote | VoteOption | The vote. |
Résultat | Task |