Ejemplo n.º 1
0
 protected virtual async Task WriteElseAsync(TemplateScopeContext scope, PageElseBlock fragment, CancellationToken token)
 {
     await WriteAsync(scope, fragment.Body, GetElseCallTrace(fragment), token);
 }
Ejemplo n.º 2
0
 protected virtual string GetElseCallTrace(PageElseBlock fragment) => "Block: " + Name + " > Else" +
 (fragment.Argument.IsNullOrEmpty() ? "" : " (" + fragment.Argument + ")");