public Post ( object toSend, string to ) : System.Xml.Linq.XDocument | ||
toSend | object | The object that will be serialized into xml and sent. |
to | string | The url the post message will be sent to. |
return | System.Xml.Linq.XDocument |
It serializes the toSend object into xml and sends the post message specified in the "to" string using an authorized connection. It returns the response from the server as an XDocument.
REQUIRES AUTHENTICATION.public Post ( object toSend, string to ) : System.Xml.Linq.XDocument | ||
toSend | object | The object that will be serialized into xml and sent. |
to | string | The url the post message will be sent to. |
return | System.Xml.Linq.XDocument |