-
Notifications
You must be signed in to change notification settings - Fork 1
/
ParametrosReplica.cs
49 lines (34 loc) · 1.58 KB
/
ParametrosReplica.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EjemploDeManejoSyncFramework
{
public class ParametrosReplica
{
public bool LimpiarServidorRemoto { get; set; }
public bool LimpiarServidorLocal { get; set; }
public bool DesaprovisionarAmbitosEnServidorLocal { get; set; }
public bool DesaprovisionarAmbitosEnServidorRemoto { get; set; }
public bool AprovisionarAmbitosEnServidorLocal { get; set; }
public bool AprovisionarAmbitosEnServidorRemoto { get; set; }
public bool RealizarReplica { get; set; }
public string StringConnectionLocal { get; set; }
public string StringConnectionRemoto { get; set; }
public List<string> ListaDeTablas { get; set; }
public bool SitioDeSubida { get; set; }
public uint TamañoDeCache { get; set; }
public uint TamañoDeTransaccion { get; set; }
public int TimeOut { get; set; }
public string esquemaMetadataSyncFramework { get; set; }
public int HilosParaAprovisionar { get; set; }
public int HilosParaReplicar { get; set; }
public string prefijoMetadataSyncFramework { get; set; }
public string prefijoParaNombreDeAmbito { get; set; }
public string esquemaQueSeReplica { get; set; }
public bool ReplicarSoloAmbitosconCambios { get; set; }
public bool SuscribirseATodosLosEventosDeInformacion { get; set; }
public bool UsarDescripcionLocal { get; set; }
public bool UsarDescripcionRemota { get; set; }
}
}