00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 using Mcs.Epm.MicrosoftProject.mpFx.Properties;
00013 using LibraryResources = Mcs.Epm.MicrosoftProject.mpFx.Properties.Resources;
00014
00015 namespace Mcs.Epm.MicrosoftProject.mpFx
00016 {
00017
00018
00019
00020 public class ProjectServerSettings
00021 {
00022 #region Constructor
00023
00024 protected internal ProjectServerSettings()
00025 {
00026 DefaultSessionDescription = LibraryResources.DefaultSessionDescription;
00027 QueueStatusRetryCount = Settings.Default.QueueStatusRetryCount;
00028 QueueStatusSleepDuration = Settings.Default.QueueStatusSleepDuration;
00029 }
00030
00031 #endregion
00032
00033 #region Public Properties
00034
00035 public int QueueStatusRetryCount { get; set; }
00036
00037 public int QueueStatusSleepDuration { get; set; }
00038
00039 public string DefaultSessionDescription { get; set; }
00040
00041 public char ListSeparator { get; set;}
00042
00043 #endregion
00044 }
00045 }
00046
00047
00048
00049
00050
00051
00052