Can I call any method in XmlHttpRequest not only GET, POST, PUT ?
*More Information: *
I have Controller named equal =
AccountsController
In Controller I have method named equal
Connnect(Account acc)
I want call this method from that controller How ?
For example:
var xhr = new XmlHttpRequest();
xhr.open("CONNECT", "www.any.link/api/Accounts", true);