The SPSite constructor (new SPSite(mySiteId)) returns a cached entry, even though the site no longer exists. How can I prevent this?
| ||||
|
feedback
|
|
We had the same problem and haven't found a solution for it yet. We tried to check whether a SPSite exists or not by calling the static SPSite.Exists(..) method. The method returned true also for sites that didn't exist any more. But we have found a little workaround. We try to provoke a FileNotFoundException by calling the SPSite's Usage property. When the exception arise we know that the site doesn't exist any more. After catching the exception you can call again the SPSite.Exists() method which will now return false. | |||
|
feedback
|
|
While I do not know the Sharepoint details, I can tell you calling | |||||||
feedback
|