1# ArkWeb_ProxyObjectWithResult 2 3 4## Overview 5 6Defines a proxy object. 7 8**Since**: 14 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_ProxyMethodWithResult](_ark_web___proxy_method_with_result.md) \* [methodList](#methodlist) | Pointer to the method struct array of an injected object. | 22| size_t [size](#size) | Length of the method struct array. | 23 24 25## Member Variable Description 26 27 28### methodList 29 30``` 31const ArkWeb_ProxyMethodWithResult* ArkWeb_ProxyObjectWithResult::methodList 32``` 33**Description** 34 35Pointer to the method struct array of an injected object. 36 37 38### objName 39 40``` 41const char* ArkWeb_ProxyObjectWithResult::objName 42``` 43**Description** 44 45Pointer to the object name to be injected. 46 47 48### size 49 50``` 51size_t ArkWeb_ProxyObjectWithResult::size 52``` 53**Description** 54 55Length of the method struct array. 56