mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
454 B
C#
16 lines
454 B
C#
using mRemoteNG.Tools;
|
|
|
|
namespace mRemoteNG.Connection.Protocol.RDP
|
|
{
|
|
public enum RDGatewayUsageMethod
|
|
{
|
|
[LocalizedAttributes.LocalizedDescription("strNever")]
|
|
Never = 0, // TSC_PROXY_MODE_NONE_DIRECT
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strAlways")]
|
|
Always = 1, // TSC_PROXY_MODE_DIRECT
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strDetect")]
|
|
Detect = 2 // TSC_PROXY_MODE_DETECT
|
|
}
|
|
} |