Class PropertyInfoExtensions
- Namespace
- Cuemon.Extensions.Reflection
- Assembly
- Cuemon.Extensions.Reflection.dll
Extension methods for the PropertyInfo class.
public static class PropertyInfoExtensions
- Inheritance
-
PropertyInfoExtensions
Methods
IsAutoProperty(PropertyInfo)
Determines whether the specified property
is considered an automatic property implementation.
public static bool IsAutoProperty(this PropertyInfo property)
Parameters
property
PropertyInfoThe property to check for automatic property implementation.
Returns
- Boolean
true
if the specifiedproperty
is considered an automatic property implementation; otherwise,false
.
Exceptions
- ArgumentNullException
property
is null.