While working with reflection, I recently got to the point where I wanted to access an object (in fact, a static instance of an object).
The object itself is defined by an internal class, therefore there is no other way to access it. Instead of directly getting a parametrized constructor, I can access a static instance via the Instance property. With the help of reflection, I am also able to get this property and set it to a PropertyInfo
instance - it is detected correctly.
However, I am not able to get the value of the property via GetValue
(since it is called via get_Instance() in the internal class itself) and set it to an object because I am getting a MethodAccessException
.
The internal class is marked with the SecuritySafeCritical
, but I do believe that shouldn't be the problem.
Any ideas on why am I getting this exception?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…