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

GetChildContext() public méthode

Gets the context to use when building the inner text of the tag.
public GetChildContext ( TextWriter writer, KeyScope scope, object>.Dictionary arguments ) : IEnumerable
writer System.IO.TextWriter The text writer passed
scope KeyScope The current scope.
arguments object>.Dictionary The arguments passed to the tag.
Résultat IEnumerable
        public virtual IEnumerable<NestedContext> GetChildContext(TextWriter writer, KeyScope scope, Dictionary<string, object> arguments)
        {
            yield return new NestedContext() { KeyScope = scope, Writer = writer };
        }