mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
removed the option for Rdc10 since it is not available for general use yet
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
using System.Windows.Forms;
|
||||
using AxMSTSCLib;
|
||||
|
||||
namespace mRemoteNG.Connection.Protocol.RDP
|
||||
{
|
||||
public class RdpProtocol10 : RdpProtocol9
|
||||
{
|
||||
protected override RdpVersion RdpProtocolVersion => RdpVersion.Rdc10;
|
||||
|
||||
protected override AxHost CreateActiveXRdpClientControl()
|
||||
{
|
||||
return new AxMsRdpClient10NotSafeForScripting();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,5 @@
|
||||
using System;
|
||||
using System.Windows.Forms;
|
||||
using System.Windows.Forms;
|
||||
using AxMSTSCLib;
|
||||
using mRemoteNG.App;
|
||||
using MSTSCLib;
|
||||
|
||||
namespace mRemoteNG.Connection.Protocol.RDP
|
||||
{
|
||||
|
||||
@@ -20,8 +20,6 @@ namespace mRemoteNG.Connection.Protocol.RDP
|
||||
return new RdpProtocol8();
|
||||
case RdpVersion.Rdc9:
|
||||
return new RdpProtocol9();
|
||||
case RdpVersion.Rdc10:
|
||||
return new RdpProtocol10();
|
||||
default:
|
||||
throw new ArgumentOutOfRangeException(nameof(rdpVersion), rdpVersion, null);
|
||||
}
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
Rdc7,
|
||||
Rdc8,
|
||||
Rdc9,
|
||||
Rdc10,
|
||||
Highest = 1000
|
||||
}
|
||||
}
|
||||
|
||||
@@ -264,7 +264,6 @@
|
||||
<Compile Include="Connection\Protocol\RDP\RdpExtensions.cs" />
|
||||
<Compile Include="Connection\Protocol\RDP\RdpNetworkConnectionType.cs" />
|
||||
<Compile Include="Connection\Protocol\RDP\RDPPerformanceFlags.cs" />
|
||||
<Compile Include="Connection\Protocol\RDP\RdpProtocol10.cs" />
|
||||
<Compile Include="Connection\Protocol\RDP\RdpProtocol7.cs" />
|
||||
<Compile Include="Connection\Protocol\RDP\RdpProtocol8.cs" />
|
||||
<Compile Include="Connection\Protocol\RDP\RdpProtocol9.cs" />
|
||||
|
||||
Reference in New Issue
Block a user