HelpUrl Element (IntelliSense Code Snippets)
Visual Studio 2012
Specifies a URL that provides more information about a code snippet.
<CodeSnippet>
<Header>
<HelpUrl>
<HelpUrl>
www.microsoft.com
</HelpUrl>
The HelpUrl element in the following code snippet has the value www.microsoft.com. This URL appears as a comment at the beginning of the code snippet.
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Copy File</Title>
<Author>Microsoft Corporation</Author>
<Description>Copies a file and saves it as another file.</Description>
<HelpUrl>www.microsoft.com</HelpUrl>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
</SnippetTypes>
<Keywords>
<Keyword>File copying</Keyword>
<Keyword>Copying files</Keyword>
</Keywords>
<Shortcut>copyfile</Shortcut>
</Header>
<Snippet>
<!-- Insert snippet information here -->
</Snippet>
</CodeSnippet>
</CodeSnippets>