AL.Sharepoint.Core.Utils.SPUtils.WebOpElevated C# (CSharp) 메소드

WebOpElevated() 공개 정적인 메소드

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