ASPC.Marvel.CrimeAPI.SharePointHighTrustContext.SharePointHighTrustContext C# (CSharp) Method

SharePointHighTrustContext() public method

public SharePointHighTrustContext ( Uri spHostUrl, Uri spAppWebUrl, string spLanguage, string spClientTag, string spProductNumber, System.Security.Principal.WindowsIdentity logonUserIdentity ) : System
spHostUrl System.Uri
spAppWebUrl System.Uri
spLanguage string
spClientTag string
spProductNumber string
logonUserIdentity System.Security.Principal.WindowsIdentity
return System
        public SharePointHighTrustContext(Uri spHostUrl, Uri spAppWebUrl, string spLanguage, string spClientTag, string spProductNumber, WindowsIdentity logonUserIdentity)
            : base(spHostUrl, spAppWebUrl, spLanguage, spClientTag, spProductNumber)
        {
            if (logonUserIdentity == null)
            {
                throw new ArgumentNullException("logonUserIdentity");
            }

            this.logonUserIdentity = logonUserIdentity;
        }