AddIn Engineering Studio, approach for reading out the network connections of a driver

AddIn Engineering Studio, approach for reading out the network connections of a driver

Hello,
I am looking for an approach to read out the configured network connections (specifically NetAddr and the IP address) from an IDriver object of type 'MODRTU32' using a zenon Engineering Studio AddIn.
Could anyone please help me with this? The standard AI-generated solutions I tried so far did not work.
            foreach (IDriver driver in project.DriverCollection)
            {
                context.DebugPrint($"=== Treiber: {driver.Name} ===", DebugPrintStyle.Standard);

                if (driver.Name != "MODRTU32")
                    continue;

                try
                {
                    //driver.InitializeConfiguration();

                    // Erste Ebene anzeigen
                    var rootProps = driver.GetDynamicProperties("??????");

Henry B.