Click or drag to resize
DocumentHelperGetDocument Method (String, String, String, Boolean, String, String, String, Int32, Boolean, String, TreeProvider)
Returns current document version. If versioning is used, gets the current VersionHistory record, otherwise gets the record directly from the database. Result contains coupled data only if classNames are specified.

Namespace: CMS.DocumentEngine
Assembly: CMS.DocumentEngine (in CMS.DocumentEngine.dll) Version: 8.2.23
Syntax
C#
public static TreeNode GetDocument(
	string siteName,
	string aliasPath,
	string cultureCode,
	bool combineWithDefaultCulture,
	string classNames,
	string where,
	string orderBy,
	int maxRelativeLevel,
	bool selectOnlyPublished,
	string columns,
	TreeProvider tree
)

Parameters

siteName
Type: SystemString
Nodes site name
aliasPath
Type: SystemString
Path. It may contain % and _ as wild card characters for any number of unknown characters or one unknown character respectively (for MS SQL).
cultureCode
Type: SystemString
Nodes culture code
combineWithDefaultCulture
Type: SystemBoolean
Indicates whether node in default culture should be returned if node in specified culture was not found.
classNames
Type: SystemString
List of class names separated by semicolon (e.g.: "cms.article;cms.product")
where
Type: SystemString
Where condition for the data selection
orderBy
Type: SystemString
Order by clause for the data selection
maxRelativeLevel
Type: SystemInt32
Maximum child level of the selected nodes
selectOnlyPublished
Type: SystemBoolean
Select only published nodes.
columns
Type: SystemString
Columns to be selected
tree
Type: CMS.DocumentEngineTreeProvider
TreeProvider to use

Return Value

Type: TreeNode
See Also