Advertisement
Fleshian

Code Snippet Blank

Apr 19th, 2014
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.51 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/CodeSnippet">
  3.     <CodeSnippet Format="1.0.0">
  4.  
  5.         <!-- The header contains information describing the snippet. -->
  6.         <Header>
  7.          
  8.           <!-- The Title of the snippet, this will be shown in the snippets manager. -->
  9.           <Title>Insert Notifying Property</Title>
  10.          
  11.           <!-- The description of the snippet. -->
  12.           <Description>Inserts an Apex Notifying Property.</Description>
  13.          
  14.           <!-- The author of the snippet. -->
  15.           <Author>Dave Kerr</Author>
  16.          
  17.           <!-- The set of characters that must be keyed in to insert the snippet. -->
  18.           <Shortcut>apexnp</Shortcut>
  19.          
  20.           <!-- A URL for more help. -->
  21.           <HelpUrl>http://apex.codeplex.com</HelpUrl>
  22.          
  23.           <!-- The set of snippet types we're dealing with - either Expansion or -->
  24.           <SnippetTypes>
  25.             <SnippetType>Expansion</SnippetType>
  26.           </SnippetTypes>          
  27.          
  28.         </Header>
  29.      
  30.         <!-- Now we have the snippet itself. -->
  31.         <Snippet>
  32.                    
  33.             <!-- Sepecify the code language and the actual snippet content. -->
  34.             <Code Language="CSharp" Kind="any">
  35.                 <![CDATA[
  36.  
  37.                    // My first snippet!
  38.                    
  39.                ]]>
  40.             </Code>
  41.         </Snippet>
  42.     </CodeSnippet>
  43. </CodeSnippets>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement