mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 22:11:48 +08:00
21 lines
846 B
VB.net
21 lines
846 B
VB.net
Imports System.ComponentModel
|
|
|
|
Namespace Connection
|
|
Public Class PuttySession
|
|
Inherits StringConverter
|
|
|
|
Public Shared PuttySessions As String() = New String() {}
|
|
|
|
Public Overloads Overrides Function GetStandardValues(ByVal context As System.ComponentModel.ITypeDescriptorContext) As System.ComponentModel.TypeConverter.StandardValuesCollection
|
|
Return New StandardValuesCollection(PuttySessions)
|
|
End Function
|
|
|
|
Public Overloads Overrides Function GetStandardValuesExclusive(ByVal context As System.ComponentModel.ITypeDescriptorContext) As Boolean
|
|
Return True
|
|
End Function
|
|
|
|
Public Overloads Overrides Function GetStandardValuesSupported(ByVal context As ITypeDescriptorContext) As Boolean
|
|
Return True
|
|
End Function
|
|
End Class
|
|
End Namespace |