|
2 | 2 | <AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010"> |
3 | 3 |
|
4 | 4 | <Type Name="web::http::uri"> |
5 | | - <DisplayString>({m_uri})</DisplayString> |
| 5 | + <DisplayString>{m_uri}</DisplayString> |
6 | 6 | </Type> |
7 | 7 |
|
8 | 8 | <Type Name="web::http::client::web_proxy"> |
|
14 | 14 | <Type Name="web::http::http_request"> |
15 | 15 | <DisplayString>[{_m_impl._Ptr->m_method}]</DisplayString> |
16 | 16 | <Expand> |
| 17 | + <Item Name="method">_m_impl._Ptr->m_method</Item> |
| 18 | + <Item Name="request uri">_m_impl._Ptr->m_uri</Item> |
17 | 19 | <Item Name="headers">((*((web::http::details::http_msg_base*)(&(*((web::http::details::_http_request*)((_m_impl)._Ptr)))))).m_headers).m_headers</Item> |
18 | 20 | </Expand> |
19 | 21 | </Type> |
|
30 | 32 | <Type Name="web::json::value"> |
31 | 33 |
|
32 | 34 | <DisplayString Condition="(m_kind==0) && ((*((web::json::details::_Number*)((m_value)._Myptr))).m_was_int)"> |
33 | | - Number {(*((web::json::details::_Number*)((m_value)._Myptr))).m_intval} |
| 35 | + {(*((web::json::details::_Number*)((m_value)._Myptr))).m_intval} |
34 | 36 | </DisplayString> |
35 | 37 | <DisplayString Condition="(m_kind==0) && (!(*((web::json::details::_Number*)((m_value)._Myptr))).m_was_int)"> |
36 | | - Number {(*((web::json::details::_Number*)((m_value)._Myptr))).m_value} |
| 38 | + {(*((web::json::details::_Number*)((m_value)._Myptr))).m_value} |
37 | 39 | </DisplayString> |
38 | 40 |
|
39 | 41 | <DisplayString Condition="m_kind==1"> |
40 | | - Boolean {(*((web::json::details::_Boolean*)(m_value._Myptr))).m_value} |
| 42 | + {(*((web::json::details::_Boolean*)(m_value._Myptr))).m_value} |
41 | 43 | </DisplayString> |
42 | 44 |
|
43 | 45 | <DisplayString Condition="(m_kind==2) && (((&((*((web::json::details::_String*)(m_value._Myptr))).m_string))))->_Myptr==0x00000000"> |
44 | | - String {((((&((*((web::json::details::_String*)(m_value._Myptr))).m_wstring)))))->_Myptr} |
| 46 | + {*((((&((*((web::json::details::_String*)(m_value._Myptr))).m_wstring)))))->_Myptr} |
45 | 47 | </DisplayString> |
46 | 48 |
|
47 | 49 | <DisplayString Condition="(m_kind==2) && (((&((*((web::json::details::_String*)(m_value._Myptr))).m_wstring))))->_Myptr==0x00000000"> |
48 | | - String {((((&((*((web::json::details::_String*)(m_value._Myptr))).m_string)))))->_Myptr} |
| 50 | + {*((((&((*((web::json::details::_String*)(m_value._Myptr))).m_string)))))->_Myptr} |
49 | 51 | </DisplayString> |
50 | 52 |
|
51 | 53 | <DisplayString Condition="m_kind==3"> |
52 | | - Object {(*((web::json::details::_Value*)(m_value._Myptr))).m_elements} |
| 54 | + object {(*((web::json::details::_Value*)(m_value._Myptr))).m_elements} |
53 | 55 | </DisplayString> |
54 | 56 |
|
55 | 57 | <DisplayString Condition="m_kind==4"> |
56 | | - Array {(*((web::json::details::_Value*)(m_value._Myptr))).m_elements} |
| 58 | + array {(*((web::json::details::_Value*)(m_value._Myptr))).m_elements} |
57 | 59 | </DisplayString> |
58 | 60 |
|
59 | | - <DisplayString Condition="m_kind==5">Null</DisplayString> |
| 61 | + <DisplayString Condition="m_kind==5">null</DisplayString> |
60 | 62 |
|
61 | 63 | <DisplayString Condition="m_kind==0xcccccccc">not initialized</DisplayString> |
62 | 64 | <Expand> |
|
0 commit comments