Show / Hide Table of Contents

Class RepositoryStatistics

Provides information about the number of items in a repository.

Inheritance
Object
RepositoryInfo
RepositoryStatistics
Inherited Members
RepositoryInfo.Citation
RepositoryInfo.Repositories
RepositoryInfo.CanRead
RepositoryInfo.CanAdministrator
RepositoryInfo.CanWrite
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
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, Int64>

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, Int64>

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
Int64

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
Int64

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
Int64

The total size, in bytes.

Extension Methods

Extensions.Yield<T>(T)
In This Article
Back to top Generated by DocFX