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

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

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