Files
mRemoteNG/mRemoteNG/Connection/Protocol/RDP/AuthenticationLevel.cs
Faryan Rezagholi c0a6240764 adjusted namespace
2020-06-13 01:06:41 +02:00

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
}
}