1# ArkWeb_ProxyObject
2
3
4## Overview
5
6Defines a proxy object.
7
8**Since**: 12
9
10**Related module**: [Web](_web.md)
11
12
13## Summary
14
15
16### Member Variables
17
18| Name| Description|
19| -------- | -------- |
20| const char \* [objName](#objname) | Pointer to the object name to be injected. |
21| const [ArkWeb_ProxyMethod](_ark_web___proxy_method.md) \* [methodList](#methodlist) | Pointer to the array of method structures of an injected object. |
22| size_t [size](#size) | Length of the method structure array. |
23
24
25## Member Variable Description
26
27
28### methodList
29
30```
31const ArkWeb_ProxyMethod* ArkWeb_ProxyObject::methodList
32```
33**Description**
34
35Pointer to the array of method structures of an injected object.
36
37
38### objName
39
40```
41const char* ArkWeb_ProxyObject::objName
42```
43**Description**
44
45Pointer to the object name to be injected.
46
47
48### size
49
50```
51size_t ArkWeb_ProxyObject::size
52```
53**Description**
54
55Length of the method structure array.
56