112
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Linq;
|
|
4 using System.Text;
|
|
5
|
|
6 namespace SSRS.Services
|
|
7 {
|
|
8 internal class Settings
|
|
9 {
|
|
10 protected static char pathSeparator = '/';
|
|
11 protected static char[] pathSeparatorArray = { pathSeparator };
|
|
12 protected static string pathSeparatorString = new string(pathSeparator, 1);
|
|
13
|
|
14 public static string ReportServer { get { return "http://apollo/Reports_SQL2008"; } }
|
|
15 public static string ReportPath { get { return "/SSRSProject"; } }
|
|
16 public static char[] PathSeparatorArray { get { return pathSeparatorArray; } }
|
|
17 public static string PathSeparatorString { get { return pathSeparatorString; } }
|
|
18 }
|
|
19 }
|