C# 클래스 Smartsheet.Api.Internal.DiscussionCommentResourcesImpl

상속: AbstractResources, DiscussionCommentResources
파일 보기 프로젝트 열기: smartsheet-platform/smartsheet-csharp-sdk 1 사용 예제들

공개 메소드들

메소드 설명
AddComment ( long sheetId, long discussionId, Comment comment ) : Comment

Adds a Comment to a Discussion.

It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/discussions/{discussionId}/comments

AddCommentWithAttachment ( long sheetId, long discussionId, Comment comment, string file, string fileType ) : Comment

Adds a Comment attached with an Attachment to a Discussion.

It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/discussions/{discussionId}/comments

DiscussionCommentResourcesImpl ( SmartsheetImpl smartsheet ) : Smartsheet.Api.Models

Constructor.

메소드 상세

AddComment() 공개 메소드

Adds a Comment to a Discussion.

It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/discussions/{discussionId}/comments

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public AddComment ( long sheetId, long discussionId, Comment comment ) : Comment
sheetId long the id of the sheet
discussionId long the id of the discussion
comment Smartsheet.Api.Models.Comment Comment object
리턴 Smartsheet.Api.Models.Comment

AddCommentWithAttachment() 공개 메소드

Adds a Comment attached with an Attachment to a Discussion.

It mirrors To the following Smartsheet REST API method: POST /sheets/{sheetId}/discussions/{discussionId}/comments

if any argument is null or empty string if there is any problem with the REST API request if there is any problem with the REST API authorization (access token) if the resource cannot be found if the REST API service is not available (possibly due To rate limiting) if there is any other error during the operation
public AddCommentWithAttachment ( long sheetId, long discussionId, Comment comment, string file, string fileType ) : Comment
sheetId long the id of the sheet
discussionId long the id of the discussion
comment Smartsheet.Api.Models.Comment Comment object
file string the file path
fileType string the file type
리턴 Smartsheet.Api.Models.Comment

DiscussionCommentResourcesImpl() 공개 메소드

Constructor.
if any argument is null
public DiscussionCommentResourcesImpl ( SmartsheetImpl smartsheet ) : Smartsheet.Api.Models
smartsheet SmartsheetImpl the Smartsheet
리턴 Smartsheet.Api.Models