How to stream partial content with ASP.NET MVC FileStreamResult

前端 未结 3 1124
感动是毒
感动是毒 2021-02-20 06:46

We\'re using a FileStreamResult to provide video data to a Silverlight MediaElement based video player:

public ActionResult Preview(Guid id) {
    return new Fil         


        
3条回答
  •  北海茫月
    2021-02-20 07:14

    1. You have to implement this by yourself. And yes, this will work on IIS6.
    2. If you can use IIS7 you probably better to leverage on IIS7 extensibility (example).

提交回复
热议问题