public AbstractOutOfProcessPollerJob()
 {
     _identity = Environment.MachineName + "_" + System.Diagnostics.Process.GetCurrentProcess().Id;
     ClientPasswordSet = NullClientPasswordSet.Instance;
     _settings = new JsonSerializerSettings()
     {
         TypeNameAssemblyFormat = FormatterAssemblyStyle.Full,
         ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor
     };
 }
Exemplo n.º 2
0
 protected AbstractOutOfProcessPollerJob()
 {
     _identity         = Environment.MachineName + "_" + System.Diagnostics.Process.GetCurrentProcess().Id;
     ClientPasswordSet = NullClientPasswordSet.Instance;
     _settings         = new JsonSerializerSettings()
     {
         TypeNameAssemblyFormat = FormatterAssemblyStyle.Full,
         ConstructorHandling    = ConstructorHandling.AllowNonPublicDefaultConstructor
     };
 }
Exemplo n.º 3
0
 static NullClientPasswordSet()
 {
     Instance = new NullClientPasswordSet();
 }
Exemplo n.º 4
0
 public WordConverter(IClientPasswordSet clientPasswordSet)
 {
     _clientPasswordSet = clientPasswordSet;
 }
 public PowerPointConverter(IClientPasswordSet clientPasswordSet)
 {
     _clientPasswordSet = clientPasswordSet;
 }
 static NullClientPasswordSet ()
 {
     Instance = new NullClientPasswordSet();
 }
 public ExcelConverter(IClientPasswordSet clientPasswordSet)
 {
     _clientPasswordSet = clientPasswordSet;
 }