Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IUnifiedSummary

Interface for implementations of file summary for UnifiedFile

Namespace: EPiServer.Web.Hosting
Assembly: EPiServer.dll
Version: 7.19.2
Syntax
public interface IUnifiedSummary

Properties

Author

Gets or sets the name of the author.

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

CanPersist

Gets a value indicating whether this instance can persist changes made.

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

true if this instance can persist changes; otherwise, false.

Category

Gets or sets the file category.

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

Comments

Gets or sets file comments.

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

Dictionary

A dictionary for custom key/value summary items.

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

Keywords

Gets or sets keywords.

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

Subject

Gets or sets a subject for the file.

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

Title

Gets or sets the file title.

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

Methods

SaveChanges()

Called to save any changes made to the summary.

Declaration
void SaveChanges()

Extension Methods