Files
mRemoteNG/mRemoteV1/Connection/Connection.Protocol.HTTPS.vb
Andreas Rehm e08c88db5f 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-05-16 19:30:27 +02:00

26 lines
634 B
VB.net

Imports System.Windows.Forms
Imports mRemoteNG.App.Runtime
Namespace Connection
Namespace Protocol
Public Class HTTPS
Inherits Connection.Protocol.HTTPBase
Public Sub New(ByVal RenderingEngine As RenderingEngine)
MyBase.New(RenderingEngine)
End Sub
Public Overrides Sub NewExtended()
MyBase.NewExtended()
httpOrS = "https"
defaultPort = Defaults.Port
End Sub
Public Enum Defaults
Port = 443
End Enum
End Class
End Namespace
End Namespace