C# Class SourceControl.Change

The class that encapsulates a description of a change.
Mostra file Open project: daptiv/Malevich Class Usage Examples

Public Properties

Property Type Description
ChangeListFriendlyName string
ChangeListId string
ChangeListOwner string
Description string
Files IList
SdClientName string
Server ISourceControlSystem
TimeStamp System.DateTime

Public Methods

Method Description
Change ( ISourceControlSystem server, string sdClientName, string changeListId, System.DateTime timeStamp, string description, IList files ) : System

Trivial constructor.

Change ( ISourceControlSystem server, string sdClientName, string changeListId, string changeListOwner, System.DateTime timeStamp, string description, IList bugIds, IList files ) : System

Trivial constructor.

Method Details

Change() public method

Trivial constructor.
public Change ( ISourceControlSystem server, string sdClientName, string changeListId, System.DateTime timeStamp, string description, IList files ) : System
server ISourceControlSystem The source control server where the change belongs.
sdClientName string In TFS, this is the name of the workspace.
changeListId string The CL number of the change.
timeStamp System.DateTime UTC time when the change was created.
description string The description of the change.
files IList The list of (only) text files that constitute the change.
return System

Change() public method

Trivial constructor.
public Change ( ISourceControlSystem server, string sdClientName, string changeListId, string changeListOwner, System.DateTime timeStamp, string description, IList bugIds, IList files ) : System
server ISourceControlSystem The source control server where the change belongs.
sdClientName string In TFS, this is the name of the workspace.
changeListId string The CL number of the change.
changeListOwner string The CL owner.
timeStamp System.DateTime UTC time when the change was created.
description string The description of the change.
bugIds IList The bug IDs associated with this change.
files IList The list of (only) text files that constitute the change.
return System

Property Details

ChangeListFriendlyName public_oe property

The CL friendly name, for display purposes.
public string ChangeListFriendlyName
return string

ChangeListId public_oe property

The CL identifier, unique within the server.
public string ChangeListId
return string

ChangeListOwner public_oe property

When working with TFS shelvesets, the shelveset owner may be different from the current user.
public string ChangeListOwner
return string

Description public_oe property

The description of the change.
public string Description
return string

Files public_oe property

The text files in the change.
public IList Files
return IList

SdClientName public_oe property

The name of the client.
public string SdClientName
return string

Server public_oe property

The source control system where the change belongs.
public ISourceControlSystem Server
return ISourceControlSystem

TimeStamp public_oe property

Timestamp of the change, in UTC.
public DateTime,System TimeStamp
return System.DateTime