Вопрос

So I'm inside a web scroped feature (properties.Feature.Parent = SPWeb).

How do I get the SPWebApplication from this SPWeb?

I tried:

SPWebApplication webApp = (SPWebApplication)properties.Feature.Parent;

But of course I get an exception because I cannot cast the SPWeb object as an SPWebApplication.

Это было полезно?

Решение

You can try:

SPWeb web = properties.Feature.Parent as SPWeb;
SPWebApplication webApp = web.Site.WebApplication;
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top