Config: Add comment about upcoming encrytion of values

This commit is contained in:
Jonathan Jenne 2021-11-01 13:28:17 +01:00
parent a2916b5cb5
commit d83c0125a4

View File

@ -192,6 +192,9 @@ Public Class ConfigManager(Of T)
End Function) End Function)
For Each oProperty As PropertyInfo In oProperties For Each oProperty As PropertyInfo In oProperties
' TODO: Process individual Subfields of class-objects
' to allow for the PasswordAttribute to be set on class properies aka nested properties
Dim oValue = oProperty.GetValue(Source, Nothing) Dim oValue = oProperty.GetValue(Source, Nothing)
If Not IsNothing(oValue) Then If Not IsNothing(oValue) Then
oProperty.SetValue(Target, oValue, Nothing) oProperty.SetValue(Target, oValue, Nothing)