Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Gemini Issue Comment Attachment (API/VB.net)

api

How to upload a Attachment in VB.net with the Gemini Api as a Issue Comment, this is what i have right now:

Dim issueComment As New IssueCommentEN

      With issueComment

        .IssueID = objSelectedIssue.IssueID
        .Comment = Converter.Text
        .ProjectID = objSelectedIssue.ProjectID

      End With

      issueComment = ServiceManager.IssuesService.CreateComment(issueComment.IssueID, issueComment)
becus
· 1
becus
Replies (1)
helpful
0
not helpful

The comment entity has an Attachment property, set it before you create the comment.

··· .becusTuesday, April 24, 2012, 2:41:05 PM

Mark Wing
· 9108
Mark Wing