mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
21 lines
582 B
C#
21 lines
582 B
C#
using AxMSTSCLib;
|
|
using MSTSCLib;
|
|
|
|
namespace mRemoteNG.Connection.Protocol.RDP
|
|
{
|
|
public class RdpProtocol7 : RdpProtocol6
|
|
{
|
|
public RdpProtocol7(ConnectionInfo connectionInfo)
|
|
: base(connectionInfo)
|
|
{
|
|
Control = new AxMsRdpClient7NotSafeForScripting();
|
|
RdpVersionEnum = RdpVersionEnum.Rdc7;
|
|
}
|
|
|
|
protected override MsRdpClient6NotSafeForScripting CreateRdpClientControl()
|
|
{
|
|
return (MsRdpClient6NotSafeForScripting)((AxMsRdpClient7NotSafeForScripting)Control).GetOcx();
|
|
}
|
|
}
|
|
}
|