Proxy.GetProxyClass(ClassLoader, Class[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the java.lang.Class
object for a proxy class
given a class loader and an array of interfaces.
[Android.Runtime.Register("getProxyClass", "(Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/Class;", "")]
public static Java.Lang.Class GetProxyClass (Java.Lang.ClassLoader? loader, params Java.Lang.Class[] interfaces);
[<Android.Runtime.Register("getProxyClass", "(Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/Class;", "")>]
static member GetProxyClass : Java.Lang.ClassLoader * Java.Lang.Class[] -> Java.Lang.Class
Parameters
- loader
- ClassLoader
the class loader to define the proxy class
- interfaces
- Class[]
the list of interfaces for the proxy class to implement
Returns
a proxy class that is defined in the specified class loader and that implements the specified interfaces
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.