mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
21 lines
587 B
C#
21 lines
587 B
C#
using AxMSTSCLib;
|
|
using MSTSCLib;
|
|
|
|
namespace mRemoteNG.Connection.Protocol.RDP
|
|
{
|
|
public class RdpProtocol10 : RdpProtocol9
|
|
{
|
|
public RdpProtocol10(ConnectionInfo connectionInfo)
|
|
: base(connectionInfo)
|
|
{
|
|
Control = new AxMsRdpClient10NotSafeForScripting();
|
|
RdpVersionEnum = RdpVersionEnum.Rdc10;
|
|
}
|
|
|
|
protected override MsRdpClient6NotSafeForScripting CreateRdpClientControl()
|
|
{
|
|
return (MsRdpClient6NotSafeForScripting)((AxMsRdpClient10NotSafeForScripting)Control).GetOcx();
|
|
}
|
|
}
|
|
}
|