⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 constants.cs

📁 基于sqlserver2k,reporting service的扩展(auth,render,deliver==)应用(mssql,RS,AS,BI)
💻 CS
字号:
using System;

namespace AWC.Reporter.Web
{

	/// <summary>
	/// Global constants
	/// </summary>
	public class Constants
	{
		public static string CONFIG_RS_URL					= "serverUrl";
		public static string CONFIG_REPORT_FOLDER			= "reportFolder";
		public static string CONFIG_CONNECT_STRING			= "connectionString";
		public static string CONFIG_OLAP_CONNECT_STRING		= "olapConnectionString";
		public static string CONFIG_ACCESS_RPT_DB			= "accessRptConnectionString";
		public static string CONFIG_AZMAN_CONFIG_STORE		= "azManConfigurationStore";
		public static string CONFIG_AZMAN_APPID 			= "AWReporter";
		public static string CONFIG_STREAM_ROOT				= "streamRootPath";
		public static string CACHE_OPERATIONS				= "operations";
		public static string CACHE_SLIDING_EXPIRATION		= "cacheSlidingExpiration";
		public static string CONFIG_RS_URL_CUSTOM_SECURITY	= "customServerUrl";
		
	}

	public enum ReportAccessType
	{
		URL,
		SOAP
	}

	public enum WizStatus
	{
		Back,
		Next,
		Cancel,
		Finish
	}

	public enum WizStep
	{
		Undefined,
		Welcome,
		Reports,
		Snapshots,
		Parameters,
		Export,
		Confirmation
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -