Autor elementu (urywki kodu IntelliSense)
Określa nazwę autora wstawki.
<Author>
Code Snippet Author
</Author>
Atrybuty i elementy
W poniższych sekcjach opisano atrybuty, elementy podrzędne i elementów nadrzędnych.
Atrybuty
Brak.
Elementy podrzędne
Brak.
Elementy nadrzędne
Element |
Opis |
---|---|
Zawiera ogólne informacje o wstawki kodu programu. |
Wartość tekstowa
Wymagana jest wartość tekstu.
Tekst ten określa autora wstawki kodu programu.
Uwagi
Manager urywki kodu Wyświetla nazwę wstawki kodu są przechowywane w Author element wstawki kodu programu.
Przykład
Author Element następujący fragment kodu zawiera wartość Microsoft Corporation.Imię i nazwisko autora, który pojawia się w opisie wstawki kodu programu w Manager urywki kodu.
<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>