ClassLoader.FindLoadedClass(String) 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 class with the given binary name if this loader has been recorded by the Java virtual machine as an initiating loader of a class with that binary name.
[Android.Runtime.Register("findLoadedClass", "(Ljava/lang/String;)Ljava/lang/Class;", "")]
protected Java.Lang.Class? FindLoadedClass (string? name);
[<Android.Runtime.Register("findLoadedClass", "(Ljava/lang/String;)Ljava/lang/Class;", "")>]
member this.FindLoadedClass : string -> Java.Lang.Class
Parameters
- name
- String
The binary name of the class
Returns
The Class
object, or null
if the class has
not been loaded
- Attributes
Remarks
Returns the class with the given binary name if this loader has been recorded by the Java virtual machine as an initiating loader of a class with that binary name. Otherwise null
is returned.
Added in 1.1.
Java documentation for java.lang.ClassLoader.findLoadedClass(java.lang.String)
.
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.