当前位置: 首页>>代码示例>>C#>>正文


C# HttpContext.GetOwinContext方法代码示例

本文整理汇总了C#中System.Web.HttpContext.GetOwinContext方法的典型用法代码示例。如果您正苦于以下问题:C# HttpContext.GetOwinContext方法的具体用法?C# HttpContext.GetOwinContext怎么用?C# HttpContext.GetOwinContext使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Web.HttpContext的用法示例。


在下文中一共展示了HttpContext.GetOwinContext方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CreateImage

        private static void CreateImage(HttpContext context, int width, int height, string filename, string virtualPath)
        {
            var img = context.Request.Files[0];
            var bitmap = new Bitmap(img.InputStream);
            var avatarBitmap = new Bitmap(bitmap, width, height);
            var graphic = Graphics.FromImage(avatarBitmap);
            graphic.SmoothingMode = SmoothingMode.AntiAlias;
            graphic.InterpolationMode = InterpolationMode.HighQualityBicubic;
            // Draw the new graphic based on the resized bitmap
            graphic.DrawImage(avatarBitmap, 0, 0, width, height);
            var extention = Path.GetExtension(img.FileName);
            filename += extention;
            var path = context.Server.MapPath(virtualPath + filename);
            var manager = context.GetOwinContext().GetUserManager<ApplicationUserManager>();
            var user = manager.FindById(long.Parse(context.User.Identity.GetUserId()));
            var oldImgPath = string.Empty;
            if (user != null)
            {
                oldImgPath = user.AvatarUrl;
                user.AvatarUrl = filename;
            }
            if (File.Exists(context.Server.MapPath(virtualPath + oldImgPath)) && !oldImgPath.Equals("Default.jpg"))
                File.Delete(context.Server.MapPath(virtualPath + oldImgPath));
            if (File.Exists(context.Server.MapPath(virtualPath+"Thumbnail/" + oldImgPath)) && !oldImgPath.Equals("Default.jpg"))
                File.Delete(context.Server.MapPath(virtualPath + "Thumbnail/" + oldImgPath));

            avatarBitmap.Save(path);
            manager.Update(user);
            bitmap.Dispose();
            avatarBitmap.Dispose();
            graphic.Dispose();
        }
开发者ID:rabbal,项目名称:AspNetWebForms-Forum,代码行数:32,代码来源:ProfileHandler.ashx.cs

示例2: OnUnauthorized

 /// <summary>
 /// Called when [unauthorized].
 /// </summary>
 /// <param name="context">The context.</param>
 protected virtual void OnUnauthorized(HttpContext context)
 {
     //WebSecurity.Logout();
     //FormsAuthentication.SignOut(); // it is ok to use this here, since that is what WebSecurity calls anyway
     context.GetOwinContext().Authentication.SignOut();
     // now check if store is accessible
     context.Response.Redirect(context.Request.RawUrl);
 }
开发者ID:gitter-badger,项目名称:vc-community-1.x,代码行数:12,代码来源:StoreHttpModule.cs


注:本文中的System.Web.HttpContext.GetOwinContext方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。