namespace FastReport.Utils { static partial class Config { #region Public Properties /// /// Gets a value indicating that the ASP.NET hosting permission level is set to full trust. /// public static bool FullTrust { get { return true; } } /// /// Gets a value that determines whether to disable some functionality to run in web mode. /// /// /// Use this property if you use FastReport in ASP.Net. Set this property to true before /// you access any FastReport.Net objects. /// public static bool WebMode { get { return FWebMode; } set { FWebMode = value; } } #endregion Public Properties #region Private Methods /// /// Does nothing /// static partial void RestoreUIStyle(); /// /// Does nothing /// static partial void SaveUIStyle(); static partial void SaveUIOptions(); static partial void RestoreUIOptions(); static partial void SaveExportOptions(); static partial void SaveAuthServiceUser(); static partial void RestoreAuthServiceUser(); static partial void RestoreExportOptions(); #endregion Private Methods internal static void DoEvent() { // do nothing } } }