StoryTeller.Persistence.JsonNode.WithFormattedText C# (CSharp) Méthode

WithFormattedText() public méthode

public WithFormattedText ( string text ) : INode
text string
Résultat INode
        public INode WithFormattedText(string text)
        {
            this[INNER_TEXT] = text;
            return this;
        }