Loading WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicOs.cs +21 −8 Original line number Diff line number Diff line Loading @@ -14,12 +14,6 @@ namespace Microsoft.Tools.WindowsDevicePortal /// </content> public partial class DevicePortal { public enum ProcessStatus { Running = 0, Stopped } /// <summary> /// API for getting or setting Interpupilary distance /// </summary> Loading @@ -35,6 +29,22 @@ namespace Microsoft.Tools.WindowsDevicePortal /// </summary> public static readonly string HolographicWebManagementHttpSettingsApi = "api/holographic/os/webmanagement/settings/https"; /// <summary> /// Enumeration describing the status of a process /// </summary> public enum ProcessStatus { /// <summary> /// The process is running /// </summary> Running = 0, /// <summary> /// The process is stopped /// </summary> Stopped } /// <summary> /// Gets the status of the Holographic Services on this HoloLens. /// </summary> Loading Loading @@ -129,6 +139,9 @@ namespace Microsoft.Tools.WindowsDevicePortal [DataContract] public class HolographicServices { /// <summary> /// Gets the status for the collection of holographic services /// </summary> [DataMember(Name = "SoftwareStatus")] public HolographicSoftwareStatus Status { get; private set; } } Loading Loading @@ -223,7 +236,7 @@ namespace Microsoft.Tools.WindowsDevicePortal { get { return (ExpectedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; return (this.ExpectedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; } } Loading @@ -234,7 +247,7 @@ namespace Microsoft.Tools.WindowsDevicePortal { get { return (ObservedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; return (this.ObservedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; } } } Loading Loading
WindowsDevicePortalWrapper/WindowsDevicePortalWrapper.Shared/HoloLens/HolographicOs.cs +21 −8 Original line number Diff line number Diff line Loading @@ -14,12 +14,6 @@ namespace Microsoft.Tools.WindowsDevicePortal /// </content> public partial class DevicePortal { public enum ProcessStatus { Running = 0, Stopped } /// <summary> /// API for getting or setting Interpupilary distance /// </summary> Loading @@ -35,6 +29,22 @@ namespace Microsoft.Tools.WindowsDevicePortal /// </summary> public static readonly string HolographicWebManagementHttpSettingsApi = "api/holographic/os/webmanagement/settings/https"; /// <summary> /// Enumeration describing the status of a process /// </summary> public enum ProcessStatus { /// <summary> /// The process is running /// </summary> Running = 0, /// <summary> /// The process is stopped /// </summary> Stopped } /// <summary> /// Gets the status of the Holographic Services on this HoloLens. /// </summary> Loading Loading @@ -129,6 +139,9 @@ namespace Microsoft.Tools.WindowsDevicePortal [DataContract] public class HolographicServices { /// <summary> /// Gets the status for the collection of holographic services /// </summary> [DataMember(Name = "SoftwareStatus")] public HolographicSoftwareStatus Status { get; private set; } } Loading Loading @@ -223,7 +236,7 @@ namespace Microsoft.Tools.WindowsDevicePortal { get { return (ExpectedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; return (this.ExpectedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; } } Loading @@ -234,7 +247,7 @@ namespace Microsoft.Tools.WindowsDevicePortal { get { return (ObservedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; return (this.ObservedRaw == "Running") ? ProcessStatus.Running : ProcessStatus.Stopped; } } } Loading