/// <summary>
        ///     Initializes a new instance of the <see cref="SearchDataCleanupForumModule" /> class.
        /// </summary>
        /// <param name="pagePreLoad">
        ///     The page pre load.
        /// </param>
        public SearchDataCleanupForumModule([NotNull] IFireEvent<ForumPagePreLoadEvent> pagePreLoad)
        {
            this._pagePreLoad = pagePreLoad;

            this._pagePreLoad.HandleEvent += this._pagePreLoad_HandleEvent;
        }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SuspendCheckForumModule"/> class.
 /// </summary>
 /// <param name="preLoadPage">
 /// The pre load page.
 /// </param>
 public SuspendCheckForumModule([NotNull] IFireEvent <ForumPagePreLoadEvent> preLoadPage)
 {
     preLoadPage.HandleEvent += this._preLoadPage_HandleEvent;
 }
        /// <summary>
        ///     Initializes a new instance of the <see cref="SearchDataCleanupForumModule" /> class.
        /// </summary>
        /// <param name="pagePreLoad">
        ///     The page pre load.
        /// </param>
        public SearchDataCleanupForumModule([NotNull] IFireEvent <ForumPagePreLoadEvent> pagePreLoad)
        {
            this._pagePreLoad = pagePreLoad;

            this._pagePreLoad.HandleEvent += this._pagePreLoad_HandleEvent;
        }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SuspendCheckForumModule"/> class.
 /// </summary>
 /// <param name="preLoadPage">
 /// The pre load page.
 /// </param>
 public SuspendCheckForumModule([NotNull] IFireEvent<ForumPagePreLoadEvent> preLoadPage)
 {
     this._preLoadPage = preLoadPage;
     this._preLoadPage.HandleEvent += this._preLoadPage_HandleEvent;
 }
Esempio n. 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PageSecurityForumModule"/> class.
 /// </summary>
 /// <param name="pagePreLoad">
 /// The page pre load.
 /// </param>
 public PageSecurityForumModule([NotNull] IFireEvent <ForumPagePreLoadEvent> pagePreLoad)
 {
     this._pagePreLoad              = pagePreLoad;
     this._pagePreLoad.HandleEvent += this.PagePreLoad_HandleEvent;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PageSecurityForumModule"/> class.
 /// </summary>
 /// <param name="pagePreLoad">
 /// The page pre load.
 /// </param>
 public PageSecurityForumModule([NotNull] IFireEvent<ForumPagePreLoadEvent> pagePreLoad)
 {
   this._pagePreLoad = pagePreLoad;
   this._pagePreLoad.HandleEvent += this.PagePreLoad_HandleEvent;
 }