Keywords 要素 (IntelliSense コード スニペット)
複数の Keyword 要素をグループ化します。
<Keywords>
<Keyword>... </Keyword>
<Keyword>... </Keyword>
<Keywords>
属性および要素
以降のセクションでは、属性、子要素、および親要素について説明します。
属性
なし。
子要素
要素 |
説明 |
---|---|
省略可能な要素 コード スニペットの複数のキーワードが格納されます。 Keywords 要素に 0 個以上の Keyword 要素があります。 |
親要素
要素 |
説明 |
---|---|
コード スニペットに関する全般的な情報が格納されます。 |
解説
コード スニペットのキーワードは Visual Studio によって使用され、検索や分類のためのカスタム キーワードを追加する手段をオンライン コンテンツ プロバイダーに提供します。
使用例
次のコード スニペットには、File copying および Copying files というキーワードが使用されています。
<CodeSnippets xmlns="https://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>