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