Class RepositoryStatistics
Provides information about the number of items in 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 RepositoryStatistics : RepositoryInfo
Constructors
RepositoryStatistics()
Initializes a new instance of the RepositoryStatistics class.
Declaration
public RepositoryStatistics()
Properties
ItemCounts
Gets or sets the number of items by type.
Declaration
[DataMember]
public Dictionary<Guid, long> ItemCounts { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<Guid, long> | The item counts. |
ItemRevisionCounts
Gets or sets the number of item revisions by type.
Declaration
[DataMember]
public Dictionary<Guid, long> ItemRevisionCounts { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<Guid, long> | The item revision counts. |
TotalItems
Gets or sets the total number of items in a repository.
Declaration
[DataMember]
public long TotalItems { get; set; }
Property Value
Type | Description |
---|---|
long | The total items. |
TotalRevisions
Gets or sets the total number of item revisions in a repository.
Declaration
[DataMember]
public long TotalRevisions { get; set; }
Property Value
Type | Description |
---|---|
long | The total revisions. |
TotalSize
Gets or sets the total size of the items and indexes in the repository database.
Declaration
[DataMember]
public long TotalSize { get; set; }
Property Value
Type | Description |
---|---|
long | The total size, in bytes. |