vote up 0 vote down star

Hi,

Im extending a class (DirectoryServices.AccountManagement.Principal) and I need to assign a value to a field in the base class but its marked internal. Can I use reflection to set the value? How would that be done?

I found this:

base.GetType().GetProperty("unpersisted").SetValue(??, false);

But im not quite sure how to give it the base Principal object

Any guidance is much appreciated.

flag

60% accept rate

2 Answers

vote up 0 vote down check

use this for ??

link|flag
I tried this but its the base class im interested in. – Exist Jun 28 at 2:17
Sorry I take that back your correct, I just had to use GetField instead. Thanks! – Exist Jun 28 at 3:21
accepted but downvoted? – JoelFan Jun 28 at 3:28
vote up 0 vote down

GetProperty on the derived class and use all parameters as this:

GetType(Derived).GetProperty("BaseProperty", BindingFlags.Instance Or BindingFlags.NonPublic, Nothing, GetType(PropertyType), New Type() {}, Nothing).SetValue(DerivedInstance, NewValue, Nothing)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.