IHasResultFactory.cs 504 B

123456789101112131415161718
  1. using MediaBrowser.Common.Net;
  2. using ServiceStack.Web;
  3. namespace MediaBrowser.Controller.Net
  4. {
  5. /// <summary>
  6. /// Interface IHasResultFactory
  7. /// Services that require a ResultFactory should implement this
  8. /// </summary>
  9. public interface IHasResultFactory : IRequiresRequest
  10. {
  11. /// <summary>
  12. /// Gets or sets the result factory.
  13. /// </summary>
  14. /// <value>The result factory.</value>
  15. IHttpResultFactory ResultFactory { get; set; }
  16. }
  17. }