[Docs] Use an external style sheet, prefix the css classes with mapi to isolate,...
[mono.git] / docs / sources / mono-api-object.html
1 <h1>Object API</h1>
2
3         <p>The object API deals with all the operations shared by
4         <a href="#objects">objects</a>, <a href="#valuetypes">value
5         types</a>, <a href="#arrays">arrays</a>.
6
7         <p>The object API has methods for accessing <a
8         href="#fields">fields</a>, <a
9         href="#properties">properties</a>, <a href="mono-api-methods.html">methods</a>, <a
10         href="#events">events</a>, <a href="#delegates">delegates</a>.
11         
12
13
14         <p>There are some advanced uses that are useful to document
15         here dealing with <a href="#remote">remote fields</a>.
16         
17 <h2>Synopsis</h2>
18
19 <div class="mapi-header">
20 #include &lt;metadata/object.h&gt;
21
22 typedef struct MonoVTable MonoVTable;
23 typedef struct _MonoThreadsSync MonoThreadsSync;
24
25 typedef struct {
26         MonoVTable *vtable;
27         MonoThreadsSync *synchronisation;
28 } MonoObject;
29
30 typedef struct {
31         guint32 length;
32         guint32 lower_bound;
33 } MonoArrayBounds;
34
35 typedef struct {
36         MonoObject obj;
37         /* bounds is NULL for szarrays */
38         MonoArrayBounds *bounds;
39         /* total number of elements of the array */
40         guint32 max_length; 
41         /* we use double to ensure proper alignment on platforms that need it */
42         double vector [MONO_ZERO_LEN_ARRAY];
43 } MonoArray;
44
45 @API_IDX@
46 </div>
47
48         <p>MonoObject is the base definition for all managed objects
49         in the Mono runtime, it represents the <a
50         href="http://www.mono-project.com/monodoc/T:System.Object">System.Object</a>
51         managed type.
52
53         <p>All objects that derive from <a
54         href="http://www.mono-project.com/monodoc/T:System.Object">System.Object</a>
55         do have this base definition.  Derived objects are declared
56         following the pattern where the parent class is the first
57         field of a structure definition, for example:
58
59         <div class="code">
60         typedef struct {
61                 MonoObject parent;
62                 int my_new_field;
63         } MyNewObject
64         </div>
65
66 <a name="objects"></a>
67 <h2>Core Object Methods</h2>
68
69 <h4><a name="api:mono_object_new">mono_object_new</a></h4>
70
71         <p>For example, if you wanted to create an object of type
72         System.Version, you would use a piece of code like this:
73
74         <div class="code">
75 MonoClass *version_class;
76 MonoObject *result;
77
78 /* Get the class from mscorlib */
79 version_class = mono_class_from_name (mono_get_corlib (),
80         "System", "Version");
81
82 /* Create an object of that class */
83 result = mono_object_new (mono_domain_get (), version_class);
84         </div>
85
86 <h4><a name="api:mono_object_new_alloc_specific">mono_object_new_alloc_specific</a></h4>
87 <h4><a name="api:mono_object_new_fast">mono_object_new_fast</a></h4>
88 <h4><a name="api:mono_object_new_from_token">mono_object_new_from_token</a></h4>
89 <h4><a name="api:mono_object_new_specific">mono_object_new_specific</a></h4>
90 <h4><a name="api:mono_object_clone">mono_object_clone</a></h4>
91 <h4><a name="api:mono_object_get_class">mono_object_get_class</a></h4>
92 <h4><a name="api:mono_object_get_domain">mono_object_get_domain</a></h4>
93 <h4><a name="api:mono_object_get_virtual_method">mono_object_get_virtual_method</a></h4>
94 <h4><a name="api:mono_object_isinst_mbyref">mono_object_isinst_mbyref</a></h4>
95 <h4><a name="api:mono_object_isinst">mono_object_isinst</a></h4>
96 <h4><a name="api:mono_object_unbox">mono_object_unbox</a></h4>
97 <h4><a name="api:mono_object_castclass_mbyref">mono_object_castclass_mbyref</a></h4>
98 <h4><a name="api:mono_object_get_size">mono_object_get_size</a></h4>
99 <h4><a name="api:mono_object_hash">mono_object_hash</a></h4>
100 <h4><a name="api:mono_object_to_string">mono_object_to_string</a></h4>
101
102 <a name="valuetypes"></a>
103 <h2>Value Types</h2>
104
105 <h4><a name="api:mono_value_box">mono_value_box</a></h4>
106 <h4><a name="api:mono_value_copy">mono_value_copy</a></h4>
107 <h4><a name="api:mono_value_copy_array">mono_value_copy_array</a></h4>
108
109 <a name="arrays"></a>
110 <h2>Array Methods</h2>
111
112         <p>Use the <tt>mono_array_new_*</tt> methods to create arrays
113         of a given type.
114
115         <p>For example, the following code creates an array with two
116         elements of type <tt>System.Byte</tt>, and sets the values
117         0xca and 0xfe on it:
118         
119         <pre class="code">
120
121         MonoArray *CreateByteArray (MonoDomain *domain)
122         {
123             MonoArray *data;
124
125             data = mono_array_new (domain, mono_get_byte_class (), 2);
126             mono_array_set (data, guint8, 0, 0xca);
127             mono_array_set (data, guint8, 0, 0xfe);
128
129             return data;
130         }
131
132         </pre>
133
134 <h3>Creating Arrays</h3>
135
136 <h4><a name="api:mono_array_new">mono_array_new</a></h4>
137 <h4><a name="api:mono_array_new_full">mono_array_new_full</a></h4>
138 <h4><a name="api:mono_array_new_specific">mono_array_new_specific</a></h4>
139 <h4><a name="api:mono_array_class_get">mono_array_class_get</a></h4>
140 <h4><a name="api:mono_array_clone">mono_array_clone</a></h4>
141
142 <h3>Using Arrays</h3>
143
144 <h4><a name="api:mono_array_set">mono_array_set</a></h4>
145 <h4><a name="api:mono_array_setref">mono_array_setref</a></h4>
146 <h4><a name="api:mono_array_length">mono_array_length</a></h4>
147 <h4><a name="api:mono_array_addr">mono_array_addr</a></h4>
148 <h4><a name="api:mono_array_addr_with_size">mono_array_addr_with_size</a></h4>
149 <h4><a name="api:mono_array_get">mono_array_get</a></h4>
150 <h4><a name="api:mono_array_element_size">mono_array_element_size</a></h4>
151
152 <a name="fields"></a>
153 <h2>Fields</h2>
154
155 <h4><a name="api:mono_field_from_token">mono_field_from_token</a></h4>
156 <h4><a name="api:mono_field_get_flags">mono_field_get_flags</a></h4>
157 <h4><a name="api:mono_field_get_name">mono_field_get_name</a></h4>
158 <h4><a name="api:mono_field_get_parent">mono_field_get_parent</a></h4>
159 <h4><a name="api:mono_field_get_type">mono_field_get_type</a></h4>
160 <h4><a name="api:mono_field_get_value">mono_field_get_value</a></h4>
161 <h4><a name="api:mono_field_get_value_object">mono_field_get_value_object</a></h4>
162 <h4><a name="api:mono_field_set_value">mono_field_set_value</a></h4>
163 <h4><a name="api:mono_field_static_get_value">mono_field_static_get_value</a></h4>
164 <h4><a name="api:mono_field_static_set_value">mono_field_static_set_value</a></h4>
165 <h4><a name="api:mono_field_get_object">mono_field_get_object</a></h4>
166
167 <a name="properties"></a>
168 <h2>Properties</h2>
169
170 <h4><a name="api:mono_property_get_object">mono_property_get_object</a></h4>
171 <h4><a name="api:mono_property_get_flags">mono_property_get_flags</a></h4>
172 <h4><a name="api:mono_property_get_get_method">mono_property_get_get_method</a></h4>
173 <h4><a name="api:mono_property_get_name">mono_property_get_name</a></h4>
174 <h4><a name="api:mono_property_get_parent">mono_property_get_parent</a></h4>
175 <h4><a name="api:mono_property_get_set_method">mono_property_get_set_method</a></h4>
176 <h4><a name="api:mono_property_get_value">mono_property_get_value</a></h4>
177 <h4><a name="api:mono_property_set_value">mono_property_set_value</a></h4>
178
179 <a name="events"></a>
180 <h2>Events</h2>
181
182 <h4><a name="api:mono_event_get_object">mono_event_get_object</a></h4>
183 <h4><a name="api:mono_event_get_add_method">mono_event_get_add_method</a></h4>
184 <h4><a name="api:mono_event_get_flags">mono_event_get_flags</a></h4>
185 <h4><a name="api:mono_event_get_name">mono_event_get_name</a></h4>
186 <h4><a name="api:mono_event_get_parent">mono_event_get_parent</a></h4>
187 <h4><a name="api:mono_event_get_raise_method">mono_event_get_raise_method</a></h4>
188 <h4><a name="api:mono_event_get_remove_method">mono_event_get_remove_method</a></h4>
189
190 <a name="remote"></a>
191 <h2>Remote Fields</h2>
192 <h4><a name="api:mono_load_remote_field">mono_load_remote_field</a></h4>
193 <h4><a name="api:mono_load_remote_field_new">mono_load_remote_field_new</a></h4>
194 <h4><a name="api:mono_store_remote_field">mono_store_remote_field</a></h4>
195 <h4><a name="api:mono_store_remote_field_new">mono_store_remote_field_new</a></h4>
196
197 <a name="delegates"></a>
198 <h2>Delegates</h2>
199 <h4><a name="api:mono_get_delegate_begin_invoke">mono_get_delegate_begin_invoke</a></h4>
200 <h4><a name="api:mono_get_delegate_end_invoke">mono_get_delegate_end_invoke</a></h4>