Exemplo n.º 1
0
 internal Context(UrBackupClient client, string context, long clientId, bool overwrite)
     : this(client, context)
 {
     _clientId  = clientId;
     forClient  = true;
     _overwrite = overwrite;
 }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            var client = new UrBackupClient(false, "10.92.90.96", 55414);

            if (client.Login("test", "test"))
            {
                foreach (var item in client.Backups.Get().Response.Clients)
                {
                    Console.Out.WriteLine(item.Name);
                }
            }
        }
Exemplo n.º 3
0
 internal Context(UrBackupClient client, string context)
 {
     _client  = client;
     _context = context;
 }