Amazon.ECS.Model.DefaultResponseGroups.ToXMLFragment C# (CSharp) Method

ToXMLFragment() protected method

XML fragment representation of this object
Name for outer tag expected to be set by calling method. This fragment returns inner properties representation only
protected ToXMLFragment ( ) : String
return String
        protected internal String ToXMLFragment()
        {
            StringBuilder xml = new StringBuilder();
            List<String> responseGroupList  =  this.ResponseGroup;
            foreach (String responseGroup in responseGroupList) {
                xml.Append("<ResponseGroup>");
                xml.Append(EscapeXML(responseGroup));
                xml.Append("</ResponseGroup>");
            }
            return xml.ToString();
        }