Czy można ustawić własność prywatną poprzez refleksję?


125

Czy mogę ustawić własność prywatną poprzez odbicie?

public abstract class Entity
{
    private int _id;
    private DateTime? _createdOn;
    public virtual T Id
    {
        get { return _id; }
        private set { ChangePropertyAndNotify(ref _id, value, x => Id); }
    }
    public virtual DateTime? CreatedOn
    {
        get { return _createdOn; }
        private set { ChangePropertyAndNotify(ref _createdOn, value, x => CreatedOn); }
    }
}

Wypróbowałem następujące i nie działa, gdzie treprezentuje typ Entity:

var t = typeof(Entity);
var mi = t.GetMethod("set_CreatedOn", BindingFlags.Instance | BindingFlags.NonPublic);

Myślę, że mogę to zrobić, ale nie mogę tego rozwiązać.


2
Wiem, że jest późno, ale znalazłem potrzebę takiej myśli, że podzieliłbym się swoim „dlaczego”. Musiałem pokonać niedogodności w oprogramowaniu innych firm. W szczególności korzystałem z metody Crystal Reports ExportToStream. Sposób zapisu tej metody uniemożliwił dostęp do wewnętrznego bufora strumienia. Aby wysłać raport do przeglądarki, musiałem skopiować strumień do nowego bufora (100K +), a następnie wysłać. Ustawiając prywatne pole „_exposable” w obiekcie stream na „true”, byłem w stanie bezpośrednio wysłać wewnętrzny bufor, zapisując przydział 100K + przy każdym żądaniu.
Ray,

20
Czemu? Załóżmy, że masz prywatne ustawiacze właściwości Id we wszystkich obiektach domeny i chcesz zaimplementować testy repozytorium. Wtedy tylko w projekcie testowym repozytorium będziesz chciał mieć możliwość ustawienia właściwości Id.
Bounav

2
Inny scenariusz użycia: ustawianie automatycznie generowanych pól, takich jak „data utworzenia” podczas importowania danych.
ANeves

Innym powodem jest to, że jestem po prostu ciekawy, czy to możliwe. W ten sposób zobaczyłem to pytanie.
Caleb Mauer

Odpowiedzi:


94
t.GetProperty("CreatedOn")
    .SetValue(obj, new DateTime(2009, 10, 14), null);

EDYCJA: Ponieważ sama właściwość jest publiczna, najwyraźniej nie musisz jej używać, BindingFlags.NonPublicaby ją znaleźć. Dzwonienie, SetValuemimo że ustawiający ma mniejszą dostępność, nadal robi to, czego oczekujesz.


5
Szczerze mówiąc, zależy to od poziomu zaufania, ale odpowiedź wydaje się ważna.
Marc Gravell

4
Nie znaleziono metody zestawu właściwości w System.Reflection.RuntimePropertyInfo.SetValue (Object obj, Object value, BindingFlags invokeAttr, Binder binder, Object [] index, CultureInfo culture)
CZahrobsky

1
Działa to dobrze, jeśli nie używam właściwości wirtualnej. Jeśli SetValue z właściwością wirtualną, to nie działa.
JonathanPeel

105

Tak to jest:

/// <summary>
/// Returns a _private_ Property Value from a given Object. Uses Reflection.
/// Throws a ArgumentOutOfRangeException if the Property is not found.
/// </summary>
/// <typeparam name="T">Type of the Property</typeparam>
/// <param name="obj">Object from where the Property Value is returned</param>
/// <param name="propName">Propertyname as string.</param>
/// <returns>PropertyValue</returns>
public static T GetPrivatePropertyValue<T>(this object obj, string propName)
{
    if (obj == null) throw new ArgumentNullException("obj");
    PropertyInfo pi = obj.GetType().GetProperty(propName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
    if (pi == null) throw new ArgumentOutOfRangeException("propName", string.Format("Property {0} was not found in Type {1}", propName, obj.GetType().FullName));
    return (T)pi.GetValue(obj, null);
}

/// <summary>
/// Returns a private Property Value from a given Object. Uses Reflection.
/// Throws a ArgumentOutOfRangeException if the Property is not found.
/// </summary>
/// <typeparam name="T">Type of the Property</typeparam>
/// <param name="obj">Object from where the Property Value is returned</param>
/// <param name="propName">Propertyname as string.</param>
/// <returns>PropertyValue</returns>
public static T GetPrivateFieldValue<T>(this object obj, string propName)
{
    if (obj == null) throw new ArgumentNullException("obj");
    Type t = obj.GetType();
    FieldInfo fi = null;
    while (fi == null && t != null)
    {
        fi = t.GetField(propName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
        t = t.BaseType;
    }
    if (fi == null) throw new ArgumentOutOfRangeException("propName", string.Format("Field {0} was not found in Type {1}", propName, obj.GetType().FullName));
    return (T)fi.GetValue(obj);
}

/// <summary>
/// Sets a _private_ Property Value from a given Object. Uses Reflection.
/// Throws a ArgumentOutOfRangeException if the Property is not found.
/// </summary>
/// <typeparam name="T">Type of the Property</typeparam>
/// <param name="obj">Object from where the Property Value is set</param>
/// <param name="propName">Propertyname as string.</param>
/// <param name="val">Value to set.</param>
/// <returns>PropertyValue</returns>
public static void SetPrivatePropertyValue<T>(this object obj, string propName, T val)
{
    Type t = obj.GetType();
    if (t.GetProperty(propName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance) == null)
        throw new ArgumentOutOfRangeException("propName", string.Format("Property {0} was not found in Type {1}", propName, obj.GetType().FullName));
    t.InvokeMember(propName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.SetProperty | BindingFlags.Instance, null, obj, new object[] { val });
}

/// <summary>
/// Set a private Property Value on a given Object. Uses Reflection.
/// </summary>
/// <typeparam name="T">Type of the Property</typeparam>
/// <param name="obj">Object from where the Property Value is returned</param>
/// <param name="propName">Propertyname as string.</param>
/// <param name="val">the value to set</param>
/// <exception cref="ArgumentOutOfRangeException">if the Property is not found</exception>
public static void SetPrivateFieldValue<T>(this object obj, string propName, T val)
{
    if (obj == null) throw new ArgumentNullException("obj");
    Type t = obj.GetType();
    FieldInfo fi = null;
    while (fi == null && t != null)
    {
        fi = t.GetField(propName, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
        t = t.BaseType;
    }
    if (fi == null) throw new ArgumentOutOfRangeException("propName", string.Format("Field {0} was not found in Type {1}", propName, obj.GetType().FullName));
    fi.SetValue(obj, val);
}

7
Żeby zabezpieczyć czyjeś włosy (które właśnie wyrwały mi z głowy): to nie zadziała w środowisku wykonawczym Silverlight: msdn.microsoft.com/de-de/library/xb5dd1f1%28v=vs.95%29.aspx
Marc Wittke

SetValue byłby lepszy niż InvokeMember, ponieważ ten pierwszy obsługuje przechodzenie indeksu
Chris Xue

8

Możesz uzyskać dostęp do prywatnego ustawiacza z typu pochodnego za pomocą kodu

public static void SetProperty(object instance, string propertyName, object newValue)
{
    Type type = instance.GetType();

    PropertyInfo prop = type.BaseType.GetProperty(propertyName);

    prop.SetValue(instance, newValue, null);
}

+1, ale tu tylko uwaga. BaseType powinien mieć wszystkie oczekiwane właściwości. Jeśli ukrywasz nieruchomość (nie pamiętając, że to zrobiłeś), może to spowodować wyrwanie niektórych włosów.
ouflak

3

Żaden z nich nie działał dla mnie, a nazwa mojej nieruchomości była wyjątkowa, więc użyłem tego:

public static void SetPrivatePropertyValue<T>(T obj, string propertyName, object newValue)
{
    // add a check here that the object obj and propertyName string are not null
    foreach (FieldInfo fi in obj.GetType().GetFields(BindingFlags.Instance | BindingFlags.NonPublic))
    {
        if (fi.Name.ToLower().Contains(propertyName.ToLower()))
        {
            fi.SetValue(obj, newValue);
            break;
        }
    }
}

0
    //mock class
    public class Person{
        public string Name{get; internal set;}
    }

    // works for all types, update private field through reflection
    public static T ReviveType<T>(T t, string propertyName, object newValue){
        // add a check here that the object t and propertyName string are not null
        PropertyInfo pi = t.GetType().GetProperty(propertyName, BindingFlags.Public | BindingFlags.Instance);
         pi.SetValue(t, newValue, null); 
        return t;
    }

    // check the required function
    void Main()
    {
        var p = new Person(){Name="John"};
        Console.WriteLine("Name: {0}",p.Name);

        //box the person to object, just to see that the method never care about what type you pass it
        object o = p;
        var updatedPerson = ReviveType<Object>(o, "Name", "Webber") as Person;

         //check if it updated person instance
        Console.WriteLine("Name: {0}",updatedPerson.Name);
    }



// Console Result: -------------------
Name: John
Name: Webber
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.