SaaS CMS has officially launched! Learn more now.

Class UnifiedSummary

Abstract class used as base class for implementations of File Summary. All properties are implemented and derived classes only need to override the SaveChanges method.

Inheritance
System.Object
UnifiedSummary
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Web.Hosting
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public abstract class UnifiedSummary : IUnifiedSummary
Remarks

Before making a call to SaveChanges, make sure the object can persist data by calling IsPersistent

Constructors

UnifiedSummary()

Default constructor for UnifiedSummary. Sets up the _meta property.

Declaration
public UnifiedSummary()

UnifiedSummary(UnifiedFile)

Sets up the Parent property.

Declaration
public UnifiedSummary(UnifiedFile parent)
Parameters
Type Name Description
UnifiedFile parent

The UnifiedFile parent to this UnifiedSummary.

Properties

Author

Author property.

Declaration
public virtual string Author { get; set; }
Property Value
Type Description
System.String

CanPersist

Property checking if the class can persist data.

Declaration
public abstract bool CanPersist { get; }
Property Value
Type Description
System.Boolean

Category

Category property.

Declaration
public virtual string Category { get; set; }
Property Value
Type Description
System.String

Comments

Comments Property.

Declaration
public virtual string Comments { get; set; }
Property Value
Type Description
System.String

Dictionary

A dictionary for custom key/value summary items.

Declaration
public virtual IDictionary Dictionary { get; }
Property Value
Type Description
System.Collections.IDictionary
Remarks

This is also the backing dictionary for named properties in this implementation.

Keywords

Keywords property.

Declaration
public virtual string Keywords { get; set; }
Property Value
Type Description
System.String

Parent

Gets the parent.

Declaration
public virtual UnifiedFile Parent { get; }
Property Value
Type Description
UnifiedFile

A UnifiedFile for the parent file to this summary.

Subject

Subject property.

Declaration
public virtual string Subject { get; set; }
Property Value
Type Description
System.String

Title

Title property.

Declaration
public virtual string Title { get; set; }
Property Value
Type Description
System.String

Methods

SaveChanges()

Saves the changes to the file summary in relation to the implementing FileSystem.

Declaration
public abstract void SaveChanges()

Implements

Extension Methods