.NET method NOT intended to be used in developer's code

  • Thread starter Thread starter TomTom
  • Start date Start date
TomTom said:
Hello. I am trying to find how I can call the method below.

http://msdn.microsoft.com/library/d...bleObjectClassIAccessibleget_accNameTopic.asp

I cannot call this method by simply creating the AccessibleObject
object. If I create a class like below and try to call the method
through myAccessibility, I still cannot call it.

public class myAccessibility : AccessibleObject.IAccessible{

}



If you know how I can call it, can you drop a line?

It's private, thus the only way to do that is using reflection.

Cheers,
 
Thanks!
How can I use reflection to call the private members? If you have a good
search term, can you let me know?
 
Back
Top