UpdateChangeset is used to update the comment and referenced checkin note with for a changeset.
Namespace:  Microsoft.TeamFoundation.VersionControl.Server
Assembly:  Microsoft.TeamFoundation.VersionControl.Server (in Microsoft.TeamFoundation.VersionControl.Server.dll)
Syntax
'Declaration
Public Sub UpdateChangeset ( _
    requestContext As TeamFoundationRequestContext, _
    changeset As Integer, _
    comment As String, _
    checkinNote As CheckinNote _
)
public void UpdateChangeset(
    TeamFoundationRequestContext requestContext,
    int changeset,
    string comment,
    CheckinNote checkinNote
)
public:
void UpdateChangeset(
    TeamFoundationRequestContext^ requestContext, 
    int changeset, 
    String^ comment, 
    CheckinNote^ checkinNote
)
member UpdateChangeset : 
        requestContext:TeamFoundationRequestContext * 
        changeset:int * 
        comment:string * 
        checkinNote:CheckinNote -> unit
public function UpdateChangeset(
    requestContext : TeamFoundationRequestContext, 
    changeset : int, 
    comment : String, 
    checkinNote : CheckinNote
)
Parameters
- requestContext 
 Type: Microsoft.TeamFoundation.Framework.Server.TeamFoundationRequestContext- The request context. 
- changeset 
 Type: System.Int32- This is the changeset ID from a previously created changeset. 
- comment 
 Type: System.String- This is the comment for the changeset. 
- checkinNote 
 Type: Microsoft.TeamFoundation.VersionControl.Server.CheckinNote- This is the checkin note for the changeset. 
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.