aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.RemoteDesktop/Network/StartRemoteDesktopSessionResponse.cs
blob: 2c1d0e63525ae8d8003bd706bb34f713e5e16d5d (plain)
1
2
3
4
5
6
7
8
9pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /*
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.RemoteDesktop.Network
{
    /// <summary>
    /// Represents a continuous message for updating about remote desktop changes.
    /// </summary>
    public class StartRemoteDesktopSessionResponse
    {
        /// <summary>
        /// Gets or sets the remote desktop packet.
        /// </summary>
        public RemoteDesktopPacket Packet { get; set; }

        /// <summary>
        /// Capture frame rate reported by the host.
        /// Will be sent only on the first response!
        /// </summary>
        public int FrameRate { get; set; }
    }
}