C# 클래스 ScrewTurn.Wiki.PluginFramework.PageContent

Contains the Content of a Page.
파일 보기 프로젝트 열기: mono/ScrewTurnWiki 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
comment string
content string
description string
keywords string[]
lastModified System.DateTime
linkedPages string[]
pageInfo System.PageInfo
title string
user string

공개 메소드들

메소드 설명
GetEmpty ( System.PageInfo page ) : PageContent

Gets an empty instance of T:PageContent.

IsEmpty ( ) : bool

Determines whether the current instance was built using M:GetEmpty.

PageContent ( System.PageInfo pageInfo, string title, string user, System.DateTime lastModified, string comment, string content, string keywords, string description ) : System

Initializes a new instance of the T:PageContent class.

메소드 상세

GetEmpty() 공개 정적인 메소드

Gets an empty instance of T:PageContent.
public static GetEmpty ( System.PageInfo page ) : PageContent
page System.PageInfo The page.
리턴 PageContent

IsEmpty() 공개 메소드

Determines whether the current instance was built using M:GetEmpty.
public IsEmpty ( ) : bool
리턴 bool

PageContent() 공개 메소드

Initializes a new instance of the T:PageContent class.
public PageContent ( System.PageInfo pageInfo, string title, string user, System.DateTime lastModified, string comment, string content, string keywords, string description ) : System
pageInfo System.PageInfo The PageInfo object.
title string The Title.
user string The User that last modified the Page.
lastModified System.DateTime The last modification Date and Time.
comment string The Comment of the editor, about this revision.
content string The unparsed Content.
keywords string The keywords, usually used for SEO, or null.
description string The description, usually used for SEO, or null.
리턴 System

프로퍼티 상세

comment 보호되어 있는 프로퍼티

The comment of the editor, about this revision.
protected string comment
리턴 string

content 보호되어 있는 프로퍼티

The Content of the Page (WikiMarkup).
protected string content
리턴 string

description 보호되어 있는 프로퍼티

The page description, usually used for SEO.
protected string description
리턴 string

keywords 보호되어 있는 프로퍼티

The keywords, usually used for SEO.
protected string[] keywords
리턴 string[]

lastModified 보호되어 있는 프로퍼티

The Date/Time of the last modification.
protected DateTime,System lastModified
리턴 System.DateTime

linkedPages 보호되어 있는 프로퍼티

The Pages linked in this Page (both existent and inexistent).
protected string[] linkedPages
리턴 string[]

pageInfo 보호되어 있는 프로퍼티

The PageInfo object.
protected PageInfo,System pageInfo
리턴 System.PageInfo

title 보호되어 있는 프로퍼티

The Title of the Page.
protected string title
리턴 string

user 보호되어 있는 프로퍼티

The Username of the user who modified the Page.
protected string user
리턴 string