C# Class TradeMe.Api.Client.BiddingMethods

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

Méthodes publiques

Méthode 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 méthode

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.
Résultat System.Xml.Linq.XDocument

BiddingMethods() public méthode

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
Résultat System

BuyNowRequest() public méthode

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.
Résultat System.Xml.Linq.XDocument