Amazon.ECS.Model.SearchResultsMap.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<SearchResultsMapSearchIndex> searchIndexList = this.SearchIndex;
            foreach (SearchResultsMapSearchIndex searchIndex in searchIndexList) {
                xml.Append("<SearchIndex>");
                xml.Append(searchIndex.ToXMLFragment());
                xml.Append("</SearchIndex>");
            }
            return xml.ToString();
        }