Table of Contents

Class AreaInfo

Namespace
Dynamicweb.Content
Assembly
Dynamicweb.dll
The AreaInfo class provides information about a specific Area in a given Solution
[Obsolete("Do not use")]
public class AreaInfo
Inheritance
AreaInfo
Inherited Members

Constructors

AreaInfo(int, int)

Initializes a new instance of the AreaInfo classa with the provided arguments
public AreaInfo(int areaId, int webPages)

Parameters

areaId int
The id of the Area that this instance holds information about
webPages int
The number of Web Pages that the area currently have

Properties

AreaId

Gets the id of the area that this instance represents
public int AreaId { get; }

Property Value

int
An integer indicating the id of the area

PageCount

Gets the number of web pages that this area has, where template and folders is not considered a valid web page
public int PageCount { get; }

Property Value

int
An integer indicating the number of web pages in the area
To top