mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
* 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
34 lines
1020 B
VB.net
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
|