Amazon.ECS.Model.OtherCategoriesSimilarProducts.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<OtherCategoriesSimilarProduct> otherCategoriesSimilarProductList = this.OtherCategoriesSimilarProduct;
            foreach (OtherCategoriesSimilarProduct otherCategoriesSimilarProduct in otherCategoriesSimilarProductList) {
                xml.Append("<OtherCategoriesSimilarProduct>");
                xml.Append(otherCategoriesSimilarProduct.ToXMLFragment());
                xml.Append("</OtherCategoriesSimilarProduct>");
            }
            return xml.ToString();
        }