Locking threads

To lock or unlock thread, you must perform the following:

  1. Get an instance of the manager.
    Get instance of the ForumsManager object.
  2. Modify the thread.
    Change the value of the IsLocked property of the thread. For more information, see Modifying threads.

Here is a code example:

public static void LockThread(Guid threadId)
{
    ForumsManager forumsManager = ForumsManager.GetManager();
 
    ForumThread thread = forumsManager.GetThread(threadId);
    thread.IsLocked = true;

 
    forumsManager.SaveChanges();
}
 
public static void UnlockThread(Guid threadId)
{
    ForumsManager forumsManager = ForumsManager.GetManager();
 
    ForumThread thread = forumsManager.GetThread(threadId);
    thread.IsLocked = false;

 
    forumsManager.SaveChanges();
}

Next steps

+1-888-365-2779
sales@sitefinity.com

Related topics:

Feedback

How useful is this article?

Tell us more

Submit
Your message was successfully sent.

We appreciate your feedback.

Your message could not be sent.

OK