mustache.TagDefinition.GetChildContext C# (CSharp) 메소드

GetChildContext() 공개 메소드

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.
리턴 IEnumerable
        public virtual IEnumerable<NestedContext> GetChildContext(TextWriter writer, KeyScope scope, Dictionary<string, object> arguments)
        {
            yield return new NestedContext() { KeyScope = scope, Writer = writer };
        }