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

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

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