TechDocs Content Generator - how to add TOC-Section content automatically?

Hi community,

I want to use a TechDoc Content Generator Method so I can automatically fill the TOC-Section title according to the target language (de/en). In addition I also want to add the element 'TOC' automatically. As soon as users add a new TOC-Section, they shall get the following view.

Unfortunately I right now struggle with both the multilingual title and the 'TOC' element..

My idea was to use something like this:

//MethodTemplateName=CSharp:Aras.TDF.ContentGenerator(Strict);

if (/* document language is German */)
{
  // Add German title
  targetElement.AddChild(this.Factory.NewText("Title", "Inhaltsverzeichnis"));
}
else if (/* document language is English */)
{
  // Add English title
  targetElement.AddChild(this.Factory.NewText("Title", "Table Of Contents"));

}

// Add TOC element
targetElement.AddChild(this.Factory.New????("TOC")); // what do I have to use here?

Would be cool if someone know how to use the ContentGenerator for this purpose. This way all kind of default elements could be automatically filled with default values. Thanks for any hints!

Angela