Method | Description | |
---|---|---|
ClearPseudoCache ( ) : void |
Clears the pseudo cache.
|
|
GetFormattedPageContent ( System.PageInfo page, bool cached ) : string |
Gets the formatted Page Content, properly handling content caching and the Formatting Pipeline.
|
|
GetPageContent ( System.PageInfo pageInfo, bool cached ) : |
Reads the Content of a Page.
|
|
GetPseudoCacheValue ( string name ) : string |
Gets a pseudo cache item value.
|
|
InvalidateAllPages ( ) : void |
Invalidates all the cache Contents.
|
|
InvalidatePage ( System.PageInfo pageInfo ) : void |
Invalidates the cached Content of a Page.
|
|
SetPseudoCacheValue ( string name, string value ) : void |
Sets a pseudo cache item value, only if the content cache is enabled.
|
public static GetFormattedPageContent ( System.PageInfo page, bool cached ) : string | ||
page | System.PageInfo | The Page to get the formatted Content of. |
cached | bool | Specifies whether the formatted content has to be cached or not. |
return | string |
public static GetPageContent ( System.PageInfo pageInfo, bool cached ) : |
||
pageInfo | System.PageInfo | The Page. |
cached | bool | Specifies whether the page has to be cached or not. |
return |
public static GetPseudoCacheValue ( string name ) : string | ||
name | string | The name of the item to retrieve the value of. |
return | string |
public static InvalidatePage ( System.PageInfo pageInfo ) : void | ||
pageInfo | System.PageInfo | The Page to invalidate the cached content of. |
return | void |
public static SetPseudoCacheValue ( string name, string value ) : void | ||
name | string | The name of the item to store the value of. |
value | string | The value of the item. |
return | void |