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
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
public Dictionary<Guid, long> ItemCounts { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<Guid, System.Int64> | The item counts. |
ItemRevisionCounts
Gets or sets the number of item revisions by type.
Declaration
public Dictionary<Guid, long> ItemRevisionCounts { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<Guid, System.Int64> | The item revision counts. |
TotalItems
Gets or sets the total number of items in a repository.
Declaration
public long TotalItems { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 | The total items. |
TotalRevisions
Gets or sets the total number of item revisions in a repository.
Declaration
public long TotalRevisions { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 | The total revisions. |
TotalSize
Gets or sets the total size of the items and indexes in the repository database.
Declaration
public long TotalSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 | The total size, in bytes. |