From d83c0125a4b67246b2d3692023a41432d3007f97 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Mon, 1 Nov 2021 13:28:17 +0100 Subject: [PATCH] Config: Add comment about upcoming encrytion of values --- Modules.Config/ConfigManager.vb | 3 +++ 1 file changed, 3 insertions(+) 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)