本文整理汇总了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();
}
示例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);
}