TradeMe.Api.Client.Client.Post C# (CSharp) Method

Post() public method

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
        public XDocument Post(object toSend, string to)
        {
            return _connection.Post(toSend, to, false);
        }

Same methods

Client::Post ( object toSend, string to, bool delete ) : System.Xml.Linq.XDocument
Client