Amazon.ECS.Model.LoyaltyPoints.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();
            if (IsSetPoints()) {
                xml.Append("<Points>");
                xml.Append(this.Points);
                xml.Append("</Points>");
            }
            if (IsSetTypicalRedemptionValue()) {
                Price  typicalRedemptionValue = this.TypicalRedemptionValue;
                xml.Append("<TypicalRedemptionValue>");
                xml.Append(typicalRedemptionValue.ToXMLFragment());
                xml.Append("</TypicalRedemptionValue>");
            }
            return xml.ToString();
        }