Type 元素(IntelliSense 代码段)
更新:2007 年 11 月
指定对象的类型。
<Type>
Type
</Type>
属性和元素
以下几节描述了属性、子元素和父元素。
属性
无。
子元素
无。
父元素
元素 |
说明 |
---|---|
定义代码段的可编辑对象字段。 |
文本值
需要一个文本值。
此文本指定对象的类型。
备注
Object 元素用于标识代码段需要的但很有可能要在代码段外部定义的项。例如,Windows 窗体控件、ASP.NET 控件、对象实例和类型实例都应声明为对象。对象声明要求指定类型,这一操作可通过 Type 元素完成。
示例
下面的示例使用 Type 元素声明代码段中的对象类型。
<CodeSnippets xmlns="https://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<!-- Insert Header information here. -->
</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">
<!-- Insert code here. -->
</Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>