示例#1
0
 /// <summary>
 /// Initializes the default SharePointContextProvider instance.
 /// </summary>
 static SharePointContextProvider()
 {
     if (!TokenHelper.IsHighTrustApp())
     {
         SharePointContextProvider.current = new SharePointAcsContextProvider();
     }
     else
     {
         SharePointContextProvider.current = new SharePointHighTrustContextProvider();
     }
 }
        protected void Page_PreInit(object sender, EventArgs e)
        {
            Uri redirectUrl;

            switch (SharePointContextProvider.CheckRedirectionStatus(Context, out redirectUrl))
            {
            case RedirectionStatus.Ok:
                return;

            case RedirectionStatus.ShouldRedirect:
                Response.Redirect(redirectUrl.AbsoluteUri, endResponse: true);
                break;

            case RedirectionStatus.CanNotRedirect:
                Response.Write("An error occurred while processing your request.");
                Response.End();
                break;
            }
        }