I have Ext.net version1.0 project and need to upgrade to version 2.3 project. I have old code like this:
     <Proxy>
            <ext:HttpProxyMethod="GET" Url="~/docs/DocNotes.ashx" />
        </Proxy>
I changed to code like this:
       <Proxy>
            <ext:AjaxProxy   Method="GET" Url="~/docs/DocNotes.ashx" />
        </Proxy>
I get error:Type 'Ext.Net.AjaxProxy' does not have a public property named 'Method'.
Do you know what's the property to replace 'Method'?