CSharpUtils.Templates.Runtime.TemplateCode.CallBlockAsync C# (CSharp) Method

CallBlockAsync() protected method

protected CallBlockAsync ( String BlockName, TemplateContext Context ) : System.Threading.Tasks.Task
BlockName String
Context TemplateContext
return System.Threading.Tasks.Task
		async protected Task CallBlockAsync(String BlockName, TemplateContext Context)
		{
			await Context.RenderingTemplate.GetFirstAscendingBlock(BlockName)(Context);
		}
#else