예제 #1
0
        public static string CreateImagePathFromStream(this HttpPostedFileBase postedFile, IMediaItemStorage imageStorage)
        {
            var imagePath = string.Empty;

            if (postedFile != null)
            {
                using (var memoryStream = new MemoryStream())
                {
                    postedFile.InputStream.CopyTo(memoryStream);

                    imagePath = imageStorage.Storage(memoryStream, postedFile.FileName);
                }
            }

            return imagePath;
        }