Files
mRemoteNG/mRemoteV1/Connection/Connection.Protocol.Protocols.vb
Andreas Rehm 7a25e3cc2e Refactoring and even more translations
* removed unneeded Imports
* renamed namespace to mRemoteNG
* changed Logfile path to %USERPROFILE%\AppData\Local\mRemoteNG\mRemoteNG.log
* fixed mRemoteNG.exe.config
* added more ignores to .gitignore
2010-08-01 01:12:36 +08:00

34 lines
1020 B
VB.net

Imports System.ComponentModel
Imports mRemoteNG.Tools.LocalizedAttributes
Namespace Connection
Namespace Protocol
Public Enum Protocols
<LocalizedDescription("strRdp")> _
RDP = 0
<LocalizedDescription("strVnc")> _
VNC = 1
<LocalizedDescription("strSsh1")> _
SSH1 = 2
<LocalizedDescription("strSsh2")> _
SSH2 = 3
<LocalizedDescription("strTelnet")> _
Telnet = 4
<LocalizedDescription("strRlogin")> _
Rlogin = 5
<LocalizedDescription("strRAW")> _
RAW = 6
<LocalizedDescription("strHttp")> _
HTTP = 7
<LocalizedDescription("strHttps")> _
HTTPS = 8
<LocalizedDescription("strICA")> _
ICA = 9
<LocalizedDescription("strExtApp")> _
IntApp = 20
<Browsable(False)> _
NONE = 999
End Enum
End Namespace
End Namespace