public static PropertyReflector GetReflector(this PropertyInfo property, CallOptions callOption) { if (property == null) { throw new ArgumentNullException(nameof(property)); } return(PropertyReflector.Create(property, callOption)); }
public static PropertyInfo GetPropertyInfo(this PropertyReflector reflector) => reflector?.GetMemberInfo();