diff --git a/Modules.Config/ConfigManager.vb b/Modules.Config/ConfigManager.vb index 15a6720b..d8092e54 100644 --- a/Modules.Config/ConfigManager.vb +++ b/Modules.Config/ConfigManager.vb @@ -192,6 +192,9 @@ Public Class ConfigManager(Of T) End Function) 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) If Not IsNothing(oValue) Then oProperty.SetValue(Target, oValue, Nothing)