Get the forum library
To get the documents library associated with the forum, you must perform the following:
- Get the forum.
Get an instance of the specified forum. For more information, see For developers: Query forums. - Get the library.
To get the library, you must call theGetForumLibraryextension method of the forum instance. The library is created upon the first call of this method.
Here is a code example:
C#
using System;
using Telerik.Sitefinity.Forums;
using Telerik.Sitefinity.Forums.Model;
using Telerik.Sitefinity.Libraries.Model;
namespace SitefinityWebApp
{
public class GetForumLibraries_GetForumLibrary
{
public static DocumentLibrary GetForumLibrary(Guid forumId)
{
ForumsManager forumsManager = ForumsManager.GetManager();
Forum forum = forumsManager.GetForum(forumId);
return forum.GetForumLibrary() as DocumentLibrary;
}
}
}
Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
Get started with Integration Hub | Sitefinity Cloud
This free lesson teaches administrators, marketers, and other business professionals how to use Sitefinity Integration Hub to create automated workflows between Sitefinity and other business systems.
Web Security for Sitefinity Administrators
This free lesson teaches administrators the basics about protecting your Sitefinity instance and your sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.
Foundations of Sitefinity ASP.NET Core Development
The free on-demand video course teaches developers how to use Sitefinity ASP.NET Core and take advantage of its decoupled architecture and modern development model.