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