リフレクションを介してプライベートプロパティを設定することは可能ですか?


125

リフレクションを介してプライベートプロパティを設定できますか?

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); }
    }
}

私は次のことを試してみた、どこでそれが、動作しないtの種類を表しますEntity

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

これはできると思いますが、うまくいきません。


2
私はこれが遅いことを知っていますが、私は自分の「なぜ」を共有したいというこの考えの必要性を見つけました。一部のサードパーティソフトウェアの不便さを克服する必要がありました。具体的には、Crystal ReportsのExportToStreamメソッドを使用していました。このメソッドの記述方法では、ストリームの内部バッファーへのアクセスは許可されていませんでした。レポートをブラウザーに送信するために、ストリームを新しいバッファー(100K +)にコピーしてから送信する必要がありました。ストリームオブジェクトのプライベート「_exposable」フィールドを「true」に設定することで、内部バッファーを直接送信でき、各リクエストで100K以上の割り当てを節約できました。
レイ

20
どうして?すべてのドメインオブジェクトのIdプロパティにプライベートセッターがあり、リポジトリテストを実装するとします。次に、リポジトリテストプロジェクトでのみ、Idプロパティを設定できるようにします。
bounav 2010年

2
別の使用シナリオ:データのインポート時に「作成日」などの自動生成フィールドを設定する。
ANeves 2014年

もう1つの理由は、それが可能であるかどうか私が知りたいだけなのです。それが私がこの質問を見ることになった方法です。
カレブマウアー

回答:


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

編集:プロパティ自体は公開されているので、明らかにBindingFlags.NonPublicそれを見つけるためにを使用する必要はありません。SetValueセッターのアクセシビリティーが低くても呼び出しても、期待どおりの結果が得られます。


5
公平に言うと、それは信頼レベルに依存しますが、答えは有効なようです。
Marc Gravell

4
System.Reflection.RuntimePropertyInfo.SetValue(Object obj、Object value、BindingFlags invokeAttr、Binderバインダ、Object []インデックス、CultureInfoカルチャ)にプロパティセットメソッドが見つかりません
CZahrobsky

1
これは、仮想プロパティを使用していない場合は問題ありません。仮想プロパティを使用してSetValueを実行すると、これは機能しないようです。
JonathanPeel

105

はい、そうです:

/// <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
誰かの髪を保護するため(ちょうど私の頭から抜かれただけ):これはSilverlightランタイムでは機能しません:msdn.microsoft.com/de-de/library/xb5dd1f1%28v=vs.95%29.aspx
Marc Wittke、2012

前者はインデックスの受け渡しをサポートしているため、SetValueはInvokeMemberよりも優れています
Chris Xue

8

コードを介して派生型からプライベートセッターにアクセスできます

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、しかしここでのメモ。BaseTypeには、期待するすべてのプロパティが必要です。プロパティを非表示にしている場合(そうしたことを覚えていない場合)、髪が抜ける可能性があります。
ouflak 2016

3

これらはどれも私にとってはうまくいきませんでした、そして私のプロパティ名は一意でしたので、私はこれを使用しました:

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
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.