mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
16 lines
440 B
C#
16 lines
440 B
C#
using mRemoteNG.Tools;
|
|
|
|
namespace mRemoteNG.Connection.Protocol.RDP
|
|
{
|
|
public enum AuthenticationLevel
|
|
{
|
|
[LocalizedAttributes.LocalizedDescription("strAlwaysConnectEvenIfAuthFails")]
|
|
NoAuth = 0,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strDontConnectWhenAuthFails")]
|
|
AuthRequired = 1,
|
|
|
|
[LocalizedAttributes.LocalizedDescription("strWarnIfAuthFails")]
|
|
WarnOnFailedAuth = 2
|
|
}
|
|
} |