ID 요소(IntelliSense 코드 조각)
Literal 또는 Object 요소에 대한 고유 식별자를 지정합니다.
<ID>
Unique Identifier
</ID>
특성 및 요소
다음 단원에서는 특성, 자식 요소 및 부모 요소에 대해 설명합니다.
특성
없음
자식 요소
없음
부모 요소
요소 |
설명 |
---|---|
편집할 수 있는 코드 조각의 리터럴 필드를 정의합니다. |
|
편집할 수 있는 코드 조각의 개체 필드를 정의합니다. |
텍스트 값
텍스트 값이 필요합니다.
이 텍스트는 개체 또는 리터럴의 고유 식별자를 지정합니다.
설명
같은 코드 조각에 있는 두 개의 리터럴 또는 개체는 ID 요소에 같은 텍스트 값을 가질 수 없습니다.
리터럴과 개체는 값이 end인 ID 요소를 포함할 수 없습니다.$end$ 값은 예약되어 있으며, 코드 조각을 삽입하고 나서 커서를 놓을 위치를 표시하는 데 사용됩니다.
예제
다음 코드 예제에서는 ID 요소 값이 SQL인 리터럴과 ID 요소 값이 Connection인 개체가 포함되어 있습니다.Code 요소는 이러한 값을 사용하여 리터럴과 개체를 참조합니다.
<CodeSnippets xmlns="https://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Create a data adapter</Title>
<Description>Creates a SqlDataAdapter object.</Description>
<Author>Microsoft Corporation</Author>
<Shortcut>createadapter</Shortcut>
</Header>
<Snippet>
<Declarations>
<Literal>
<ID>SQL</ID>
<ToolTip>Replace with a SQL connection string.</ToolTip>
<Default>"SQL connection string"</Default>
</Literal>
<Object>
<ID>Connection</ID>
<Type>System.Data.SqlClient.SqlConnection</Type>
<ToolTip>Replace with a connection object in your application.</ToolTip>
<Default>dcConnection</Default>
</Object>
</Declarations>
<Code Language="CSharp">
<![CDATA[
daCustomers = new SqlClient.SqlDataAdapter();
selectCommand = new SqlClient.SqlCommand($SQL$);
daCustomers.SelectCommand = selectCommand;
daCustomers.SelectCommand.Connection = $Connection$;
]]>
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>