Skip Navigation Links
Skip navigation links
Blog
Document Center
News
Reports
Search
Sites
Other Blogs
There are no items in this list.
Code Integrators > Blog > Posts > Attaching a Receiver using Code
Attaching a Receiver using Code

Intro

So I have built a new receiver (You can review the article found here). Now what?

Well, the answer is that you have to attach it somehow. In this post, I plan to demonstrate how to do this via code. In a later approach I will be reviewing feature based development.

Implementation

The first thing we are going to do is create a new project in visual studio. In this case we will make it a console application just for a POC:

We then of course are going to add the Microsoft.SharePoint.dll reference. You can find this in my previous article located here.

Finally we are going to write the following code:

using System;

using System.Collections.Generic;

using System.Text;

using Microsoft.SharePoint;

namespace MSIT.Samples

{

class Program

{

static void Main(string[] args)

{

SPSite spSite = null;

SPWeb spWeb = null;

SPList spList;

try

{

spSite = new SPSite("http://r2-basemachine:1111");

spWeb = spSite.OpenWeb();

spList = spWeb.Lists["Contacts"];

//spList = spWeb.Lists["ContactType"];

string asmName = "MSIT.ItemReceivers, Version=0.0.0.0, Culture=neutral, PublicKeyToken=6546c52e1a7f48a0";

string className = "MSIT.ItemReceivers.UpdateContactsEvent";

spList.EventReceivers.Add(SPEventReceiverType.ItemAdded, asmName, className);

spList.EventReceivers.Add(SPEventReceiverType.ItemUpdated, asmName, className);

spList.Update();

}

catch

{}

finally

{

spList = null;

spWeb.Dispose();

spSite.Dispose();

spWeb = null;

spSite = null;

}

}

}

}

 

You simply run this code and run IISReset and you are golden (ready for test)

Comments

IfTYJwaCHL

UlG6TU I want will learn to earn many money., <a href="http://plastic-surgery.search1.comli.com">plastic surgery</a>, [url="http://plastic-surgery.search1.comli.com"]plastic surgery[/url], http://plastic-surgery.search1.comli.com plastic surgery,  885674, <a href="http://to-purchase-wine.search1.comli.com">to purchase wine</a>, [url="http://to-purchase-wine.search1.comli.com"]to purchase wine[/url], http://to-purchase-wine.search1.comli.com to purchase wine,  dlty, <a href="http://order-pizza-online.search1.comli.com">order pizza online</a>, [url="http://order-pizza-online.search1.comli.com"]order pizza online[/url], http://order-pizza-online.search1.comli.com order pizza online,  %-OO, <a href="http://work-on-to-the-house.search1.comli.com">work on to the house</a>, [url="http://work-on-to-the-house.search1.comli.com"]work on to the house[/url], http://work-on-to-the-house.search1.comli.com work on to the house,  rrjwg, <a href="http://to-sell-the-car.search1.comli.com">to-sell the car</a>, [url="http://to-sell-the-car.search1.comli.com"]to-sell the car[/url], http://to-sell-the-car.search1.comli.com to-sell the car,  jlana, <a href="http://online-xanax.search1.comli.com">online xanax</a>, [url="http://online-xanax.search1.comli.com"]online xanax[/url], http://online-xanax.search1.comli.com online xanax,  %-PP, <a href="http://live-web-cams.search1.comli.com">live web cams</a>, [url="http://live-web-cams.search1.comli.com"]live web cams[/url], http://live-web-cams.search1.comli.com live web cams,  =(, <a href="http://wedding-dresses.search1.comli.com">wedding dresses</a>, [url="http://wedding-dresses.search1.comli.com"]wedding dresses[/url], http://wedding-dresses.search1.comli.com wedding dresses,  576, <a href="http://building-materials.search1.comli.com">quit smoking</a>, [url="http://building-materials.search1.comli.com"]quit smoking[/url], http://building-materials.search1.comli.com quit smoking,  0158, <a href="http://buy-gold.search1.comli.com">buy gold</a>, [url="http://buy-gold.search1.comli.com"]buy gold[/url], http://buy-gold.search1.comli.com buy gold,  325905, <a href="http://buy-phentermine.search1.comli.com">buy phentermine</a>, [url="http://buy-phentermine.search1.comli.com"]buy phentermine[/url], http://buy-phentermine.search1.comli.com buy phentermine,  646, <a href="http://lawyer.search1.comli.com">lawyer</a>, [url="http://lawyer.search1.comli.com"]lawyer[/url], http://lawyer.search1.comli.com lawyer,  zac, <a href="http://cheap-xanax.search1.comli.com">cheap xanax</a>, [url="http://cheap-xanax.search1.comli.com"]cheap xanax[/url], http://cheap-xanax.search1.comli.com cheap xanax,  fnq, <a href="http://cleaning.search1.comli.com">cleaning</a>, [url="http://cleaning.search1.comli.com"]cleaning[/url], http://cleaning.search1.comli.com cleaning,  8-OOO,
at 2/5/2009 12:45 AM

Re: Attaching a Receiver using Code

at 6/24/2010 10:58 PM

Add Comment

Title


Body *


Attachments