Tagged Questions
2
votes
1answer
157 views
Add content types programmatically into SPList takes too long
I've dozens of CTypes to add to an SPList programmatically (cause content types are provided by CTH) and each oSPList.ContentTypes.Add() takes almost 1sec. Is there any other approach ou code ...
0
votes
1answer
187 views
Changing SPField cause no changes
I try to change an SPField after SPList creation, but I'm not getting any results of that change. using this code:
SPField oSPField = oSPList.Fields[new Guid("MyFieldGuid")];
...