RegisterAttribute Constructors

Definition

Overloads

RegisterAttribute(String)

Constructs and initializes an instance of the RegisterAttribute type with the specified type name.

RegisterAttribute(String, String, String)

Constructs and initializes an instance of the RegisterAttribute type with the specified member name, signature, and connector.

RegisterAttribute(String)

Constructs and initializes an instance of the RegisterAttribute type with the specified type name.

public RegisterAttribute (string name);
new Android.Runtime.RegisterAttribute : string -> Android.Runtime.RegisterAttribute

Parameters

name
String

A String containing the JNI name of the corresponding Android type.

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.

Applies to

RegisterAttribute(String, String, String)

Constructs and initializes an instance of the RegisterAttribute type with the specified member name, signature, and connector.

public RegisterAttribute (string name, string signature, string connector);
new Android.Runtime.RegisterAttribute : string * string * string -> Android.Runtime.RegisterAttribute

Parameters

name
String

A String containing the JNI name of the corresponding Android member.

signature
String

A String containing the JNI signature of the corresponding Android member.

connector
String

A String containing the internal method to use to connect the monodroid.exe-generated JNI method to the managed method.

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.

Applies to