C# Class XWiki.XmlRpc.Page

Contains the attributes of a page.
Datei anzeigen Open project: xwiki-contrib/xwiki-office Class Usage Examples

Public Properties

Property Type Description
content String
id String
parentId String
space String
title String
translations String[]
url String

Public Methods

Method Description
Page ( String pageId ) : System

Creates a new Page instance. Initialises the non-parametrized members with the default values.

Page ( String pageId, String content ) : System

Creates a new Page instance. Initialises the non-parametrized members with the default values.

Method Details

Page() public method

Creates a new Page instance. Initialises the non-parametrized members with the default values.
public Page ( String pageId ) : System
pageId String The id of the page.
return System

Page() public method

Creates a new Page instance. Initialises the non-parametrized members with the default values.
public Page ( String pageId, String content ) : System
pageId String The id of the page.
content String The content of the page.
return System

Property Details

content public_oe property

The (non-rendered)content of the page.
public String content
return String

id public_oe property

The id of the page.
public String id
return String

parentId public_oe property

The id of the parent page.
public String parentId
return String

space public_oe property

The name of the space.
public String space
return String

title public_oe property

The title of the page.
public String title
return String

translations public_oe property

Array containing all available translations for the current page. The array does not contain the value of the default language of the page.
public String[] translations
return String[]

url public_oe property

The 'view' url of the page.
public String url
return String