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

BidRequest() public method

Performs the Bidding Method: Place a bid request.

Serializes the given BidRequest into xml and sends the message.

REQUIRES AUTHENTICATION.
public BidRequest ( BidRequest request ) : System.Xml.Linq.XDocument
request BidRequest The object that will be serialized into xml and then sent in a POST message.
return System.Xml.Linq.XDocument
        public XDocument BidRequest(BidRequest request)
        {
            if (_bidding == null)
            {
                _bidding = new BiddingMethods(_connection);
            }

            return _bidding.BidRequest(request);
        }
Client