Example #1
0
        internal void UpdateFromProxy(Proxy_Crashdump proxy)
        {
            this.uuid = (proxy.uuid == null) ? null : proxy.uuid;
            this.VM   = (proxy.VM == null) ? null : XenRef <WinAPI.VM> .Create(proxy.VM);

            this.VDI = (proxy.VDI == null) ? null : XenRef <WinAPI.VDI> .Create(proxy.VDI);

            this.other_config = (proxy.other_config == null) ? null : Maps.convert_from_proxy_string_string(proxy.other_config);
        }
Example #2
0
 public Crashdump(Proxy_Crashdump proxy)
 {
     this.UpdateFromProxy(proxy);
 }