AL.Sharepoint.Core.Utils.SPUtils.WebOpElevated C# (CSharp) Method

WebOpElevated() public static method

public static WebOpElevated ( string webUrl, Action op ) : void
webUrl string
op Action
return void
        public static void WebOpElevated(string webUrl, Action<SPWeb> op)
        {
            SPSecurity.RunWithElevatedPrivileges(() => WebOp(webUrl, op));
        }