Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 698 Bytes

api-diffs_Microsoft.AspNetCore.Builder.Internal.md

File metadata and controls

17 lines (15 loc) · 698 Bytes

Microsoft.AspNetCore.Builder.Internal

 namespace Microsoft.AspNetCore.Builder.Internal {
     public class ApplicationBuilder : IApplicationBuilder {
         public ApplicationBuilder(IServiceProvider serviceProvider);
         public ApplicationBuilder(IServiceProvider serviceProvider, object server);
         public IServiceProvider ApplicationServices { get; set; }
         public IDictionary<string, object> Properties { get; }
         public IFeatureCollection ServerFeatures { get; }
         public RequestDelegate Build();
         public IApplicationBuilder New();
         public IApplicationBuilder Use(Func<RequestDelegate, RequestDelegate> middleware);
     }
 }