﻿<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
	<CodeSnippet Format="1.0.0">
		<Header>
			<Title>Custom EventArgs</Title>
			<Shortcut>eventargs</Shortcut>
			<Description>Creates the definition for a class that inherits from EventArgs.</Description>
			<Author>Dave Sexton</Author>
			<SnippetTypes>
				<SnippetType>Expansion</SnippetType>
			</SnippetTypes>
		</Header>
		<Snippet>
			<Declarations>
				<Literal Editable="true">
					<ID>name</ID>
					<Default>CustomEventArgs</Default>
					<Type>System.EventArgs</Type>
				</Literal>
				<Literal Editable="true">
					<ID>base</ID>
					<Default>EventArgs</Default>
					<Type>System.EventArgs</Type>
				</Literal>
				<Literal Editable="true">
					<ID>summary</ID>
					<Default>Provides arguments for an event.</Default>
					<Type>System.EventArgs</Type>
				</Literal>
			</Declarations>
			<Code Language="csharp">
				<![CDATA[/// <summary>
	/// $summary$
	/// </summary>
	[Serializable]
	public class $name$ : $base$
	{
		public new static readonly $name$ Empty = new $name$();

		#region Public Properties
		#endregion

		#region Private / Protected
		#endregion

		#region Constructors
		/// <summary>
		/// Constructs a new instance of the <see cref="$name$" /> class.
		/// </summary>
		public $name$($end$)
		{
		}
		#endregion
	}]]>
			</Code>
		</Snippet>
	</CodeSnippet>
</CodeSnippets>