Amazon.ECS.Model.SellerListingSearchResponse.ToXML C# (CSharp) Метод

ToXML() публичный Метод

XML Representation for this object
public ToXML ( ) : String
Результат String
        public String ToXML()
        {
            StringBuilder xml = new StringBuilder();
            xml.Append("<SellerListingSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2007-07-16\">");
            if (IsSetOperationRequest()) {
                OperationRequest  operationRequest = this.OperationRequest;
                xml.Append("<OperationRequest>");
                xml.Append(operationRequest.ToXMLFragment());
                xml.Append("</OperationRequest>");
            }
            List<SellerListings> sellerListingsList = this.SellerListings;
            foreach (SellerListings sellerListings in sellerListingsList) {
                xml.Append("<SellerListings>");
                xml.Append(sellerListings.ToXMLFragment());
                xml.Append("</SellerListings>");
            }
            xml.Append("</SellerListingSearchResponse>");
            return xml.ToString();
        }