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

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

XML Representation for this object
public ToXML ( ) : String
Результат String
        public String ToXML()
        {
            StringBuilder xml = new StringBuilder();
            xml.Append("<CartClearResponse 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<Cart> cartList = this.Cart;
            foreach (Cart cart in cartList) {
                xml.Append("<Cart>");
                xml.Append(cart.ToXMLFragment());
                xml.Append("</Cart>");
            }
            xml.Append("</CartClearResponse>");
            return xml.ToString();
        }