Beispiel #1
0
 public MockDesktop()
 {
     this.name = "foo";
     this.ipAddress = "255.255.255.255";
     this.state = VirtualMachineState.Stopped;
     this.desktopState = DesktopState.UnknownToXenDesktop;
 }
Beispiel #2
0
 public Desktop(string id, string name, string ipAddress, VirtualMachineState state, DesktopState desktopState)
 {
     Id = id;
     Name = name;
     IpAddress = ipAddress;
     State = state;
     DesktopState = desktopState;
 }