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

Extension Methods

Extensions.Yield<T>(T)
In this article
Back to top Generated by DocFX