<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets
    xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <!-- The title displayed in the snippet menu. -->
      <Title>Example Snippet</Title>

      <!-- The snippet's shortcut. Type  -->
      <Shortcut>ExampleSnippet</Shortcut>
    </Header>
    <Snippet>
      <!-- Imports statements needed by the snippet's code. -->
      <Imports>
        <Import>
          <Namespace>System.ComponentModel</Namespace>
        </Import>
        <Import>
          <Namespace>System.Windows.Forms</Namespace>
        </Import>
      </Imports>

      <!-- References needed by the snippet's code. -->
      <References>
        <Reference>
          <Assembly>System.Windows.Forms.dll</Assembly>
        </Reference>
      </References>

      <!-- Declarations for making replacements. -->
      <Declarations>
        <Literal>
          <ID>data_type</ID>
          <ToolTip>The property's data type.</ToolTip>
          <Default>String</Default>
        </Literal>
        <Object>
          <ID>data_connection</ID>
          <Type>System.Data.OleDb.OleDbConnection</Type>
          <ToolTip>Replace with a connection object.</ToolTip>
          <Default>data_connection</Default>
        </Object>
      </Declarations>
      <Code Language="VB">
        <![CDATA[
Make replacements as in:
    $data_type$
    $data_connection$
    ]]>
      </Code>
    </Snippet>
  </CodeSnippet>
</CodeSnippets>
