RegisterAttribute Constructors
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.
Overloads
RegisterAttribute() | |
RegisterAttribute(String) |
Used to specify how the ECMA class is exposed as an Objective-C class. |
RegisterAttribute(String, Boolean) |
Used to specify how the ECMA class is exposed as an Objective-C class. |
RegisterAttribute()
public RegisterAttribute ();
Applies to
RegisterAttribute(String)
Used to specify how the ECMA class is exposed as an Objective-C class.
public RegisterAttribute (string name);
new Foundation.RegisterAttribute : string -> Foundation.RegisterAttribute
Parameters
- name
- String
The name to use when exposing this class to the Objective-C world.
Applies to
RegisterAttribute(String, Boolean)
Used to specify how the ECMA class is exposed as an Objective-C class.
public RegisterAttribute (string name, bool isWrapper);
new Foundation.RegisterAttribute : string * bool -> Foundation.RegisterAttribute
Parameters
- name
- String
The name to use when exposing this class to the Objective-C world.
- isWrapper
- Boolean
Used to specify if the class being registered is wrapping an existing Objective-C class, or if it's a new class.