Class RepositoryTransactionResult
Represents an item that is registered with a repository.
Inherited Members
Namespace: Algenta.Colectica.Model.Repository
Assembly: Algenta.Colectica.Model.dll
Syntax
[DataContract(Namespace = "http://ns.colectica.com/2009/07/")]
public class RepositoryTransactionResult
Properties
NotProcessed
A list of the items that were skipped in a copy commit for already being present
Declaration
[DataMember]
public Collection<IdentifierTriple> NotProcessed { get; set; }
Property Value
Type | Description |
---|---|
Collection<IdentifierTriple> |
SystemCommitted
A list of the items that were committed via version propagation
Declaration
[DataMember]
public Collection<IdentifierTriple> SystemCommitted { get; set; }
Property Value
Type | Description |
---|---|
Collection<IdentifierTriple> |
Transaction
The current state of the Repository Transaction
Declaration
[DataMember]
public RepositoryTransaction Transaction { get; set; }
Property Value
Type | Description |
---|---|
RepositoryTransaction |
UserCommitted
A list of the user submitted items that were committed
Declaration
[DataMember]
public Collection<IdentifierTriple> UserCommitted { get; set; }
Property Value
Type | Description |
---|---|
Collection<IdentifierTriple> |