Amazon.ECS.Model.DefaultResponseGroups.ToXMLFragment C# (CSharp) 메소드

ToXMLFragment() 보호된 메소드

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
리턴 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();
        }