ReSharper | Templates Explorer | Live Templates | XML
This topic lists all predefined live templates for XML in ReSharper 2016.1.1. For more information about live templates, see Creating Source Code Using Live Templates
Template
Details
ctx
Current file context
Scope everywhere
Body
$CTX$
Parameters
CTX - Provides list of items describing current context. This includes file name, containing type name, namespace name, etc. (context)
t
Create tag
Scope XML tags
Body
<$TAG$>$END$</$TAG$>
Parameters
TAG - Suggests XML tag name used in current document (suggestXmlTagName)
END - The caret position after the template is applied.
Before expansion After expansion
tc
Create closed tag
Scope XML tags
Body
<$TAG$ $END$/>
Parameters
TAG - Suggests XML tag name used in current document (suggestXmlTagName)
END - The caret position after the template is applied.