Rhino.VMBridge.TryToMakeAccessible C# (CSharp) Method

TryToMakeAccessible() protected abstract method

In many JVMSs, public methods in private classes are not accessible by default (Sun Bug #4071593).
In many JVMSs, public methods in private classes are not accessible by default (Sun Bug #4071593). VMBridge instance should try to workaround that via, for example, calling method.setAccessible(true) when it is available. The implementation is responsible to catch all possible exceptions like SecurityException if the workaround is not available.
protected abstract TryToMakeAccessible ( object accessibleObject ) : bool
accessibleObject object
return bool
		protected internal abstract bool TryToMakeAccessible(object accessibleObject);