C# Class TradeMe.Api.Client.BiddingMethods

The BiddingMethods class contains the methods requried for making calls to the API related to bidding.
Show file Open project: TradeMe/trade-me-api-wrapper Class Usage Examples

Public Methods

Method Description
BidRequest ( BidRequest request ) : System.Xml.Linq.XDocument

Performs the Bidding Method: Place a bid request. POST

Serializes the given BidRequest into xml and sends the message.

REQUIRES AUTHENTICATION.

BiddingMethods ( ConnectionMethods connect ) : System

Initializes a new instance of the BiddingMethods class.

BuyNowRequest ( BuyNowRequest request ) : System.Xml.Linq.XDocument

Performs the Bidding Method: Place a Buy Now request. POST

Serializes the given BuyNowRequest into xml and sends the message.

REQUIRES AUTHENTICATION.

Method Details

BidRequest() public method

Performs the Bidding Method: Place a bid request. POST

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

BiddingMethods() public method

Initializes a new instance of the BiddingMethods class.
public BiddingMethods ( ConnectionMethods connect ) : System
connect ConnectionMethods A ConnectionMethods class used to make calls to the API
return System

BuyNowRequest() public method

Performs the Bidding Method: Place a Buy Now request. POST

Serializes the given BuyNowRequest into xml and sends the message.

REQUIRES AUTHENTICATION.
public BuyNowRequest ( BuyNowRequest request ) : System.Xml.Linq.XDocument
request BuyNowRequest The object that will be serialized into xml and then sent in a POST message.
return System.Xml.Linq.XDocument