When a user adds, deletes, edits, branches, or merges a file, these changes are made in their workspace only. When a user then checks in files, these changes become one changeset, which is automically updated on the server to be available to other users. That changeset is associated with a changeset ID which acts as a version number for every updated item. This function gets a detailed description of the specified changeset, but download information is not included in the changeset. This procedure makes the function call faster, but if you want to download files, you should use one of the overload methods that will allow you to get download information with the returned items.
Public Function GetChangeset ( _ changesetId As Integer _ ) As Changeset
Dim instance As VersionControlServer Dim changesetId As Integer Dim returnValue As Changeset returnValue = instance.GetChangeset(changesetId)
public Changeset GetChangeset( int changesetId )
public: Changeset^ GetChangeset( int changesetId )
public function GetChangeset( changesetId : int ) : Changeset