ILocalUpdateOperation Interface
Represents an operation that is returned by the server to be used by the client to update the local disk.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Interface ILocalUpdateOperation
public interface ILocalUpdateOperation
public interface class ILocalUpdateOperation
type ILocalUpdateOperation = interface end
public interface ILocalUpdateOperation
The ILocalUpdateOperation type exposes the following members.
Properties
Name | Description | |
---|---|---|
ChangeType | Gets the ChangeType enumeration value associated with the operation. | |
DeletionId | Gets the deletion identifier associated with the operation. | |
Ignore | Gets or sets a flag that describes whether to ignore this operation. | |
IsConflict | Gets a flag that describes whether this operation is detected by the server as being in conflict. | |
IsDelete | Gets a flag that describes whether this operation will result in deletion of the item from the local disk. | |
ItemId | Gets the item identifier associated with the operation. | |
ItemType | Gets the ItemType enumeration value associated with the operation. | |
PendingChangeId | Gets the pending change identifier associated with the operation. | |
SourceLocalItem | Gets the local path where the item currently exists. | |
TargetLocalItem | Gets the local destination for the item. | |
TargetServerItem | Gets the server path of the item. | |
VersionLocal | Gets the current version of the workspace. | |
VersionServer | Gets the version that the workspace should have. |
Top