annotate SSRS/SSRS.Services/Settings.cs @ 121:8f94475d3146 tip

final code
author stevenh7776
date Thu, 31 May 2012 15:35:26 +0100
parents b9d5f934cb21
children
rev   line source
112
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
1 using System;
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
2 using System.Collections.Generic;
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
3 using System.Linq;
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
4 using System.Text;
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
5
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
6 namespace SSRS.Services
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
7 {
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
8 internal class Settings
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
9 {
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
10 protected static char pathSeparator = '/';
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
11 protected static char[] pathSeparatorArray = { pathSeparator };
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
12 protected static string pathSeparatorString = new string(pathSeparator, 1);
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
13
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
14 public static string ReportServer { get { return "http://apollo/Reports_SQL2008"; } }
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
15 public static string ReportPath { get { return "/SSRSProject"; } }
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
16 public static char[] PathSeparatorArray { get { return pathSeparatorArray; } }
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
17 public static string PathSeparatorString { get { return pathSeparatorString; } }
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
18 }
b9d5f934cb21 Initial upload
adminsh@apollo
parents:
diff changeset
19 }