up vote 3 down vote favorite
1
share [g+] share [fb]

I've got some problems unregistering some eventreceivers form a contenttype. The contenttype and the receivers were deployed and registered by myself so I don't try to remove any MOSS built-in or internal eventreceivers.

I trying to archive this with the following code snippet:

using (SPSite site = new SPSite("http://wssdev06/"))
        {
            using (SPWeb web = site.RootWeb)
            {
                // web.AllowUnsafeUpdates = true;

                SPContentType type = web.AvailableContentTypes[<ContentTypeName>];

                while (type.EventReceivers.Count > 0)
                {
                    type.EventReceivers[0].Delete();                        
                }

                type.Update();

                // web.AllowUnsafeUpdates = false;
            }
        }

Unfortunately the command "type.Update()" throws an exception telling me that the collection cannot be modified. As you can see in the code I've already tried different things to solve this problem, as allowing unsafe updates or running this code with elevated privileges. But I always get the same exception.

So what am I doing wrong?

link|improve this question

72% accept rate
feedback

3 Answers

up vote 5 down vote accepted

Your problem is that the "AvailableContentTypes" property returns you a READ-ONLY collection.

You should also use the 'ContentTypes' property, ans everything should be fine.

Regards,

Dug.

link|improve this answer
feedback

Is the type based on a publishing type? I have had issues changing those types. Otherwise you might try changing the entire SchemaXml of the type. I have found that this sometimes works when other methods do not.

link|improve this answer
feedback

You should be able to set type.ReadOnly = false to enable writing to the type.

As well, your SPWeb does not need to be disposed - see Roger Lamb's blog here for more details.

link|improve this answer
Thx for the tip not to dispose the RootWeb any more. – Flo Mar 2 '09 at 10:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.