SanSYS

Untitled

Mar 10th, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. public class MyHandler : IHttpHandler
  2. {
  3.     ...
  4. }
  5.  
  6. public class MyHandlerRouteHandler : IRouteHandler
  7. {
  8.     public IHttpHandler GetHttpHandler(RequestContext requestContext)
  9.     {
  10.         return new MyHandler();
  11.     }
  12. }
  13.  
  14. // Маппинг маршрута для извлечения картинки по идентификатору
  15. // Этот код добавляется там же, где и правила для иных маршрутов
  16. RouteTable.Routes.Add(new Route("Image/{ImageID}", new MyHandlerRouteHandler()));
Advertisement
Add Comment
Please, Sign In to add comment