Files
mRemoteNG/mRemoteV1/Connection/Connection.Protocol.HTTPS.vb

26 lines
632 B
VB.net

Imports System.Windows.Forms
Imports mRemote.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