Commit 4dbeb2fb authored by David Kline's avatar David Kline
Browse files

make our events actual events

parent 288f318d
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -47,11 +47,7 @@ namespace Microsoft.Tools.WindowsDevicePortal
        /// <summary>
        /// Gets or sets install status handler.
        /// </summary>
        public ApplicationInstallStatusEventHandler AppInstallStatus
        {
            get;
            set;
        }
        public event ApplicationInstallStatusEventHandler AppInstallStatus;

        /// <summary>
        /// Gets the collection of applications installed on the device.
+1 −5
Original line number Diff line number Diff line
@@ -101,11 +101,7 @@ namespace Microsoft.Tools.WindowsDevicePortal
        /// <summary>
        /// Gets or sets handler for reporting connection status.
        /// </summary>
        public DeviceConnectionStatusEventHandler ConnectionStatus
        {
            get;
            set;
        }
        public event DeviceConnectionStatusEventHandler ConnectionStatus;

        /// <summary>
        /// Gets the status code for establishing our connection.
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ namespace Microsoft.Tools.WindowsDevicePortal
    /// <summary>
    /// Application install status event args
    /// </summary>
    public class ApplicationInstallStatusEventArgs
    public class ApplicationInstallStatusEventArgs : System.EventArgs
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="ApplicationInstallStatusEventArgs"/> class.
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ namespace Microsoft.Tools.WindowsDevicePortal
    /// <summary>
    /// Contains the details about the connection status
    /// </summary>
    public class DeviceConnectionStatusEventArgs
    public class DeviceConnectionStatusEventArgs : System.EventArgs
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="DeviceConnectionStatusEventArgs"/> class.