You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is your code
As you can see allowNonPublicAccessors is not used
/// <summary>
/// Wraps an individual object, allowing by-name access to that instance
///
/// </summary>
public static ObjectAccessor Create(object target, bool allowNonPublicAccessors)
{
if (target == null)
throw new ArgumentNullException("target");
IDynamicMetaObjectProvider target1 = target as IDynamicMetaObjectProvider;
if (target1 != null)
return (ObjectAccessor) new ObjectAccessor.DynamicWrapper(target1);
else
return (ObjectAccessor) new ObjectAccessor.TypeAccessorWrapper(target, TypeAccessor.Create(target.GetType()));
}
Original issue reported on code.google.com by [email protected] on 28 Nov 2014 at 3:20
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 28 Nov 2014 at 3:20The text was updated successfully, but these errors were encountered: