Rhino.VMBridge.GetInterfaceProxyHelper C# (CSharp) Method

GetInterfaceProxyHelper() protected method

Create helper object to create later proxies implementing the specified interfaces later.
Create helper object to create later proxies implementing the specified interfaces later. Under JDK 1.3 the implementation can look like:
 return java.lang.reflect.Proxy.getProxyClass(..., interfaces). getConstructor(new Class[] { java.lang.reflect.InvocationHandler.class }); 
protected GetInterfaceProxyHelper ( ContextFactory cf, Type interfaces ) : object
cf ContextFactory
interfaces System.Type Array with one or more interface class objects.
return object
		protected internal virtual object GetInterfaceProxyHelper(ContextFactory cf, Type[] interfaces)
		{
			throw Context.ReportRuntimeError("VMBridge.getInterfaceProxyHelper is not supported");
		}