mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
436 B
C#
16 lines
436 B
C#
using mRemoteNG.Tools;
|
|
|
|
namespace mRemoteNG.Connection.Protocol.RDP
|
|
{
|
|
public enum RDGatewayUseConnectionCredentials
|
|
{
|
|
[LocalizedAttributes.LocalizedDescription("strUseDifferentUsernameAndPassword")]
|
|
No = 0,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strUseSameUsernameAndPassword")]
|
|
Yes = 1,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strUseSmartCard")]
|
|
SmartCard = 2
|
|
}
|
|
} |