Amazon.ECS.Model.Collections.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<CollectionsCollection> collectionList = this.Collection;
            foreach (CollectionsCollection collection in collectionList) {
                xml.Append("<Collection>");
                xml.Append(collection.ToXMLFragment());
                xml.Append("</Collection>");
            }
            return xml.ToString();
        }