Index: Core/Common/src/Core.Common.Util/Reflection/TypeUtils.cs =================================================================== diff -u -rc20800c67e7bc81c8b5337ffcfd63c743a8ed451 -r0c645c2b2a2c7c77f2d69f9fff6be028bdb6db47 --- Core/Common/src/Core.Common.Util/Reflection/TypeUtils.cs (.../TypeUtils.cs) (revision c20800c67e7bc81c8b5337ffcfd63c743a8ed451) +++ Core/Common/src/Core.Common.Util/Reflection/TypeUtils.cs (.../TypeUtils.cs) (revision 0c645c2b2a2c7c77f2d69f9fff6be028bdb6db47) @@ -137,7 +137,7 @@ instance.GetType().GetProperty(propertyName, BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.Public); if (propertyInfo == null) { - throw new ArgumentOutOfRangeException(nameof(propertyName)); + throw new ArgumentOutOfRangeException(nameof(propertyInfo)); } MethodInfo getter = propertyInfo.GetGetMethod(true);