/// <summary>
		/// Creates a new instance of LDAP Search Result which will contain the entry that fired the event
		/// </summary>
		public LdapSearchResultCollectionEventArgs(LdapSearchResult entry, SmartChangeType type)
		{
			m_type = type;
			m_entry = entry;
		}
		/// <summary>
		/// Creates a new instance of SmartColumnCollectionEventArgs which will contain the entry that fired the event
		/// </summary>
		public SmartColumnValueCollectionEventArgs(SmartColumnValue entry, SmartChangeType type)
		{
			m_type = type;
			m_entry = entry;
		}