Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiResponseHttpCachingPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiResponseHttpCachingPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #2
0
 /// <summary>Initializes a new instance of the <see cref="PipelineComponentBase"/> class.</summary>
 /// <param name="next">The next.</param>
 public PipelineComponentBase(ApiRequestDelegate next)
 {
     apinext = next;
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiResponseUnhandledExceptionPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiResponseUnhandledExceptionPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestEndpointInvocationPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestEndpointInvocationPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestMethodPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestMethodPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestBodyBindingPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestBodyBindingPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #7
0
 /// <summary>Initializes a new instance of the <see cref="ApiResponseRequestProcessingPipelineComponent"/> class.</summary>
 /// <param name="next">The next.</param>
 public ApiResponseRequestProcessingPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestNotFoundPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestNotFoundPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestHeaderValidationPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestHeaderValidationPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #10
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiResponseCorsPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiResponseCookiesPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestLocalizationPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestLocalizationPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #12
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestRoutingPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestRoutingPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestCorsPreflightPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestCorsPreflightPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #14
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestAuthenticationPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestAuthenticationPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #15
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestCanceledPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestCanceledPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #16
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiResponseMessagePipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiResponseMessagePipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #17
0
 /// <summary>Initializes a new instance of the <see cref="ApiRequestDelegateHandler"/> class.</summary>
 /// <param name="pipeline">The pipeline.</param>
 /// <param name="type">The type.</param>
 public ApiRequestDelegateHandler(IApiRequestPipeline pipeline, Type type)
 {
     this.pipeline        = pipeline;
     this.requestDelegate = new ApiRequestDelegate(TaskInvoker);
     this.type            = type;
 }
Exemple #18
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiResponseBodyWriterPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiResponseBodyWriterPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #19
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestAcceptPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestAcceptPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }
Exemple #20
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ApiRequestInvocationInitializerPipelineComponent"/> class.
 /// </summary>
 /// <param name="next">The next.</param>
 public ApiRequestInvocationInitializerPipelineComponent(ApiRequestDelegate next)
     : base(next)
 {
 }