Resetting document rating

  Previous topic Next topic JavaScript is required for the print function Mail us feedback on this topic! Mail us feedback on this topic!  

The following code example shows how to reset content rating of a document using the API.

 

[C#]

 

using CMS.TreeEngine;

using CMS.CMSHelper;

 

int nodeId = 241;

 

// Get the document

TreeProvider tree = new TreeProvider(CMSContext.CurrentUser);

CMS.TreeEngine.TreeNode node = tree.SelectSingleNode(nodeId, CMSContext.PreferredCultureCode);

 

// Reset its rating

TreeProvider.ResetRating(node);

 

Page url: http://devnet.kentico.com/docs/5_5r2/devguide/index.html?api_resetting_document_rating.htm