mustache.TagDefinition.ConsolidateWriter C# (CSharp) Méthode

ConsolidateWriter() public méthode

Consolidates the text in the given writer to a string, using the given arguments as necessary.
public ConsolidateWriter ( TextWriter writer, object>.Dictionary arguments ) : string
writer System.IO.TextWriter The writer containing the text to consolidate.
arguments object>.Dictionary The arguments passed to the tag.
Résultat string
        public virtual string ConsolidateWriter(TextWriter writer, Dictionary<string, object> arguments)
        {
            return writer.ToString();
        }