Autor prvku (technologie IntelliSense kódu)
Určuje jméno autora fragment.
<Author>
Code Snippet Author
</Author>
Atributy a elementy
Následující části popisují atributy, podřízené prvky a rodičovské prvky.
Atributy
Žádný
Podřízené elementy
Žádný
Nadřazené elementy
Element |
Description |
---|---|
Obsahuje obecné informace o kódu. |
Textová hodnota
Je požadována hodnota text.
Tento text určuje autora kódu.
Poznámky
Správce fragmentů kódů zobrazí název fragment kódu je uložena v Author element kódu.
Příklad
Author Element následující fragment kódu obsahuje hodnotu Microsoft Corporation.Jméno autora se zobrazí v popisu kódu v Správce fragmentů kódů.
<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>