Initial commit
- Added ASP.NET Core reference assemblies experiment. This adds Microsoft.AspNetCore and Microsoft.Extensions. - The tool to actually generate the refs hasn't been checked in yet. I'll do that later.
This commit is contained in:
Родитель
51c0205a13
Коммит
8d37742586
|
@ -0,0 +1,52 @@
|
|||
*.doc diff=astextplain
|
||||
*.DOC diff=astextplain
|
||||
*.docx diff=astextplain
|
||||
*.DOCX diff=astextplain
|
||||
*.dot diff=astextplain
|
||||
*.DOT diff=astextplain
|
||||
*.pdf diff=astextplain
|
||||
*.PDF diff=astextplain
|
||||
*.rtf diff=astextplain
|
||||
*.RTF diff=astextplain
|
||||
|
||||
*.jpg binary
|
||||
*.png binary
|
||||
*.gif binary
|
||||
|
||||
*.cs text=auto diff=csharp
|
||||
*.vb text=auto
|
||||
*.resx text=auto
|
||||
*.c text=auto
|
||||
*.cpp text=auto
|
||||
*.cxx text=auto
|
||||
*.h text=auto
|
||||
*.hxx text=auto
|
||||
*.py text=auto
|
||||
*.rb text=auto
|
||||
*.java text=auto
|
||||
*.html text=auto
|
||||
*.htm text=auto
|
||||
*.css text=auto
|
||||
*.scss text=auto
|
||||
*.sass text=auto
|
||||
*.less text=auto
|
||||
*.js text=auto
|
||||
*.lisp text=auto
|
||||
*.clj text=auto
|
||||
*.sql text=auto
|
||||
*.php text=auto
|
||||
*.lua text=auto
|
||||
*.m text=auto
|
||||
*.asm text=auto
|
||||
*.erl text=auto
|
||||
*.fs text=auto
|
||||
*.fsx text=auto
|
||||
*.hs text=auto
|
||||
|
||||
*.csproj text=auto
|
||||
*.vbproj text=auto
|
||||
*.fsproj text=auto
|
||||
*.dbproj text=auto
|
||||
*.sln text=auto eol=crlf
|
||||
|
||||
*.sh eol=lf
|
|
@ -0,0 +1,38 @@
|
|||
[Oo]bj/
|
||||
[Bb]in/
|
||||
TestResults/
|
||||
.nuget/
|
||||
.build/
|
||||
.testPublish/
|
||||
*.sln.ide/
|
||||
_ReSharper.*/
|
||||
packages/
|
||||
artifacts/
|
||||
PublishProfiles/
|
||||
.vs/
|
||||
bower_components/
|
||||
node_modules/
|
||||
debugSettings.json
|
||||
project.lock.json
|
||||
*.user
|
||||
*.suo
|
||||
*.cache
|
||||
*.docstates
|
||||
_ReSharper.*
|
||||
nuget.exe
|
||||
*net45.csproj
|
||||
*net451.csproj
|
||||
*k10.csproj
|
||||
*.psess
|
||||
*.vsp
|
||||
*.pidb
|
||||
*.userprefs
|
||||
*DS_Store
|
||||
*.ncrunchsolution
|
||||
*.*sdf
|
||||
*.ipch
|
||||
.settings
|
||||
*.sln.ide
|
||||
node_modules
|
||||
*launchSettings.json
|
||||
*.orig
|
|
@ -0,0 +1,46 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.25420.1
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{22ABE934-09A2-4F10-B06A-9B4E155FCE1E}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{323A96D9-C651-4D61-AC0D-E1EABF1F5E52}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
global.json = global.json
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Seed", "src\Seed\Seed.xproj", "{5DC9554B-0A77-473C-BEB1-8D92C37F80E9}"
|
||||
EndProject
|
||||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Extensions", "src\Microsoft.Extensions\Microsoft.Extensions.xproj", "{8A0432A8-5EFB-423F-8A26-EB5D8B602494}"
|
||||
EndProject
|
||||
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.AspNetCore", "src\Microsoft.AspNetCore\Microsoft.AspNetCore.xproj", "{5212DF06-C8D4-43B8-A0F7-D8E6E4D6B298}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{5DC9554B-0A77-473C-BEB1-8D92C37F80E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5DC9554B-0A77-473C-BEB1-8D92C37F80E9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5DC9554B-0A77-473C-BEB1-8D92C37F80E9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5DC9554B-0A77-473C-BEB1-8D92C37F80E9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{8A0432A8-5EFB-423F-8A26-EB5D8B602494}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{8A0432A8-5EFB-423F-8A26-EB5D8B602494}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8A0432A8-5EFB-423F-8A26-EB5D8B602494}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8A0432A8-5EFB-423F-8A26-EB5D8B602494}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{5212DF06-C8D4-43B8-A0F7-D8E6E4D6B298}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5212DF06-C8D4-43B8-A0F7-D8E6E4D6B298}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5212DF06-C8D4-43B8-A0F7-D8E6E4D6B298}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5212DF06-C8D4-43B8-A0F7-D8E6E4D6B298}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{5DC9554B-0A77-473C-BEB1-8D92C37F80E9} = {22ABE934-09A2-4F10-B06A-9B4E155FCE1E}
|
||||
{8A0432A8-5EFB-423F-8A26-EB5D8B602494} = {22ABE934-09A2-4F10-B06A-9B4E155FCE1E}
|
||||
{5212DF06-C8D4-43B8-A0F7-D8E6E4D6B298} = {22ABE934-09A2-4F10-B06A-9B4E155FCE1E}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"projects": [ "src", "test" ],
|
||||
"sdk": {
|
||||
"version": "1.0.0-preview2-003121"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
namespace Microsoft.AspNetCore.Diagnostics
|
||||
{
|
||||
public partial class CompilationFailure
|
||||
{
|
||||
public CompilationFailure(string sourceFilePath, string sourceFileContent, string compiledContent, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Diagnostics.DiagnosticMessage> messages) { }
|
||||
public string CompiledContent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Diagnostics.DiagnosticMessage> Messages { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string SourceFileContent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string SourceFilePath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public partial class DiagnosticMessage
|
||||
{
|
||||
public DiagnosticMessage(string message, string formattedMessage, string filePath, int startLine, int startColumn, int endLine, int endColumn) { }
|
||||
public int EndColumn { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int EndLine { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string FormattedMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Message { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string SourceFilePath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int StartColumn { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int StartLine { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public partial interface ICompilationException
|
||||
{
|
||||
System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Diagnostics.CompilationFailure> CompilationFailures { get; }
|
||||
}
|
||||
public partial interface IExceptionHandlerFeature
|
||||
{
|
||||
System.Exception Error { get; }
|
||||
}
|
||||
public partial interface IStatusCodePagesFeature
|
||||
{
|
||||
bool Enabled { get; set; }
|
||||
}
|
||||
public partial interface IStatusCodeReExecuteFeature
|
||||
{
|
||||
string OriginalPath { get; set; }
|
||||
string OriginalPathBase { get; set; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,213 @@
|
|||
namespace Microsoft.AspNetCore.Builder
|
||||
{
|
||||
public static partial class DeveloperExceptionPageExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDeveloperExceptionPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDeveloperExceptionPage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions options) { throw null; }
|
||||
}
|
||||
public partial class DeveloperExceptionPageOptions
|
||||
{
|
||||
public DeveloperExceptionPageOptions() { }
|
||||
public Microsoft.Extensions.FileProviders.IFileProvider FileProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int SourceCodeLineCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class ExceptionHandlerExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.ExceptionHandlerOptions options) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configure) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseExceptionHandler(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string errorHandlingPath) { throw null; }
|
||||
}
|
||||
public partial class ExceptionHandlerOptions
|
||||
{
|
||||
public ExceptionHandlerOptions() { }
|
||||
public Microsoft.AspNetCore.Http.RequestDelegate ExceptionHandler { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Http.PathString ExceptionHandlingPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class StatusCodePagesExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.StatusCodePagesOptions options) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configuration) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, System.Func<Microsoft.AspNetCore.Diagnostics.StatusCodeContext, System.Threading.Tasks.Task> handler) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStatusCodePages(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string contentType, string bodyFormat) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStatusCodePagesWithRedirects(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string locationFormat) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStatusCodePagesWithReExecute(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string pathFormat, string queryFormat=null) { throw null; }
|
||||
}
|
||||
public partial class StatusCodePagesOptions
|
||||
{
|
||||
public StatusCodePagesOptions() { }
|
||||
public System.Func<Microsoft.AspNetCore.Diagnostics.StatusCodeContext, System.Threading.Tasks.Task> HandleAsync { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class WelcomePageExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.WelcomePageOptions options) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Http.PathString path) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseWelcomePage(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string path) { throw null; }
|
||||
}
|
||||
public partial class WelcomePageOptions
|
||||
{
|
||||
public WelcomePageOptions() { }
|
||||
public Microsoft.AspNetCore.Http.PathString Path { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Diagnostics
|
||||
{
|
||||
public partial class DeveloperExceptionPageMiddleware
|
||||
{
|
||||
public DeveloperExceptionPageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions> options, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment, System.Diagnostics.DiagnosticSource diagnosticSource) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class ExceptionHandlerFeature : Microsoft.AspNetCore.Diagnostics.IExceptionHandlerFeature
|
||||
{
|
||||
public ExceptionHandlerFeature() { }
|
||||
public System.Exception Error { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class ExceptionHandlerMiddleware
|
||||
{
|
||||
public ExceptionHandlerMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.ExceptionHandlerOptions> options, System.Diagnostics.DiagnosticSource diagnosticSource) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class StatusCodeContext
|
||||
{
|
||||
public StatusCodeContext(Microsoft.AspNetCore.Http.HttpContext context, Microsoft.AspNetCore.Builder.StatusCodePagesOptions options, Microsoft.AspNetCore.Http.RequestDelegate next) { }
|
||||
public Microsoft.AspNetCore.Http.HttpContext HttpContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.RequestDelegate Next { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Builder.StatusCodePagesOptions Options { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public partial class StatusCodePagesFeature : Microsoft.AspNetCore.Diagnostics.IStatusCodePagesFeature
|
||||
{
|
||||
public StatusCodePagesFeature() { }
|
||||
public bool Enabled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class StatusCodePagesMiddleware
|
||||
{
|
||||
public StatusCodePagesMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.StatusCodePagesOptions> options) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class StatusCodeReExecuteFeature : Microsoft.AspNetCore.Diagnostics.IStatusCodeReExecuteFeature
|
||||
{
|
||||
public StatusCodeReExecuteFeature() { }
|
||||
public string OriginalPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string OriginalPathBase { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string OriginalQueryString { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class WelcomePageMiddleware
|
||||
{
|
||||
public WelcomePageMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.WelcomePageOptions> options) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Diagnostics.Views
|
||||
{
|
||||
public partial class CompilationErrorPage : Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView
|
||||
{
|
||||
public CompilationErrorPage() { }
|
||||
public Microsoft.AspNetCore.Diagnostics.Views.CompilationErrorPageModel Model { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public override System.Threading.Tasks.Task ExecuteAsync() { throw null; }
|
||||
}
|
||||
public partial class CompilationErrorPageModel
|
||||
{
|
||||
public CompilationErrorPageModel() { }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Diagnostics.Views.ErrorDetails> ErrorDetails { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions Options { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class ErrorDetails
|
||||
{
|
||||
public ErrorDetails() { }
|
||||
public System.Exception Error { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Diagnostics.Views.StackFrame> StackFrames { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class ErrorPage : Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView
|
||||
{
|
||||
public ErrorPage() { }
|
||||
public ErrorPage(Microsoft.AspNetCore.Diagnostics.Views.ErrorPageModel model) { }
|
||||
public Microsoft.AspNetCore.Diagnostics.Views.ErrorPageModel Model { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public override System.Threading.Tasks.Task ExecuteAsync() { throw null; }
|
||||
}
|
||||
public partial class ErrorPageModel
|
||||
{
|
||||
public ErrorPageModel() { }
|
||||
public Microsoft.AspNetCore.Http.IRequestCookieCollection Cookies { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Diagnostics.Views.ErrorDetails> ErrorDetails { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IDictionary<string, Microsoft.Extensions.Primitives.StringValues> Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Builder.DeveloperExceptionPageOptions Options { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Http.IQueryCollection Query { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class StackFrame
|
||||
{
|
||||
public StackFrame() { }
|
||||
public System.Collections.Generic.IEnumerable<string> ContextCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string ErrorDetails { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string File { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Function { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int Line { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IEnumerable<string> PostContextCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IEnumerable<string> PreContextCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int PreContextLine { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class StackFrameInfo
|
||||
{
|
||||
public StackFrameInfo() { }
|
||||
public System.Collections.Generic.IEnumerable<string> ContextCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string ErrorDetails { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string File { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Function { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int Line { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IEnumerable<string> PostContextCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IEnumerable<string> PreContextCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int PreContextLine { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class WelcomePage : Microsoft.AspNetCore.DiagnosticsViewPage.Views.BaseView
|
||||
{
|
||||
public WelcomePage() { }
|
||||
public override System.Threading.Tasks.Task ExecuteAsync() { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.DiagnosticsViewPage.Views
|
||||
{
|
||||
public partial class AttributeValue
|
||||
{
|
||||
public AttributeValue(string prefix, object value, bool literal) { }
|
||||
public bool Literal { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Prefix { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public object Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public static Microsoft.AspNetCore.DiagnosticsViewPage.Views.AttributeValue FromTuple(System.Tuple<string, object, bool> value) { throw null; }
|
||||
public static Microsoft.AspNetCore.DiagnosticsViewPage.Views.AttributeValue FromTuple(System.Tuple<string, string, bool> value) { throw null; }
|
||||
public static implicit operator Microsoft.AspNetCore.DiagnosticsViewPage.Views.AttributeValue (System.Tuple<string, object, bool> value) { throw null; }
|
||||
}
|
||||
public abstract partial class BaseView
|
||||
{
|
||||
protected BaseView() { }
|
||||
protected Microsoft.AspNetCore.Http.HttpContext Context { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
protected System.Text.Encodings.Web.HtmlEncoder HtmlEncoder { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
protected System.Text.Encodings.Web.JavaScriptEncoder JavaScriptEncoder { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
protected System.IO.StreamWriter Output { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
protected Microsoft.AspNetCore.Http.HttpRequest Request { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
protected Microsoft.AspNetCore.Http.HttpResponse Response { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
protected System.Text.Encodings.Web.UrlEncoder UrlEncoder { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
protected void BeginWriteAttribute(string name, string begining, int startPosition, string ending, int endPosition, int thingy) { }
|
||||
protected void EndWriteAttribute() { }
|
||||
public abstract System.Threading.Tasks.Task ExecuteAsync();
|
||||
public System.Threading.Tasks.Task ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
protected string HtmlEncodeAndReplaceLineBreaks(string input) { throw null; }
|
||||
protected void Write(Microsoft.AspNetCore.DiagnosticsViewPage.Views.HelperResult result) { }
|
||||
protected void Write(object value) { }
|
||||
protected void Write(string value) { }
|
||||
protected void WriteAttributeTo(System.IO.TextWriter writer, string name, string leader, string trailer, params Microsoft.AspNetCore.DiagnosticsViewPage.Views.AttributeValue[] values) { }
|
||||
protected void WriteAttributeValue(string thingy, int startPostion, object value, int endValue, int dealyo, bool yesno) { }
|
||||
protected void WriteLiteral(object value) { }
|
||||
protected void WriteLiteral(string value) { }
|
||||
protected void WriteLiteralTo(System.IO.TextWriter writer, object value) { }
|
||||
protected void WriteLiteralTo(System.IO.TextWriter writer, string value) { }
|
||||
protected void WriteTo(System.IO.TextWriter writer, object value) { }
|
||||
protected void WriteTo(System.IO.TextWriter writer, string value) { }
|
||||
}
|
||||
public partial class HelperResult
|
||||
{
|
||||
public HelperResult(System.Action<System.IO.TextWriter> action) { }
|
||||
public System.Action<System.IO.TextWriter> WriteAction { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public void WriteTo(System.IO.TextWriter writer) { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,79 @@
|
|||
namespace Microsoft.AspNetCore.Hosting
|
||||
{
|
||||
public static partial class EnvironmentName
|
||||
{
|
||||
public static readonly string Development;
|
||||
public static readonly string Production;
|
||||
public static readonly string Staging;
|
||||
}
|
||||
public static partial class HostingAbstractionsWebHostBuilderExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder CaptureStartupErrors(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, bool captureStartupErrors) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHost Start(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, params string[] urls) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseConfiguration(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, Microsoft.Extensions.Configuration.IConfiguration configuration) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseContentRoot(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, string contentRoot) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseEnvironment(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, string environment) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseServer(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, Microsoft.AspNetCore.Hosting.Server.IServer server) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseStartup(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, string startupAssemblyName) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseUrls(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, params string[] urls) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseWebRoot(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, string webRoot) { throw null; }
|
||||
}
|
||||
public static partial class HostingEnvironmentExtensions
|
||||
{
|
||||
public static bool IsDevelopment(this Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment) { throw null; }
|
||||
public static bool IsEnvironment(this Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment, string environmentName) { throw null; }
|
||||
public static bool IsProduction(this Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment) { throw null; }
|
||||
public static bool IsStaging(this Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment) { throw null; }
|
||||
}
|
||||
public partial interface IApplicationLifetime
|
||||
{
|
||||
System.Threading.CancellationToken ApplicationStarted { get; }
|
||||
System.Threading.CancellationToken ApplicationStopped { get; }
|
||||
System.Threading.CancellationToken ApplicationStopping { get; }
|
||||
void StopApplication();
|
||||
}
|
||||
public partial interface IHostingEnvironment
|
||||
{
|
||||
string ApplicationName { get; set; }
|
||||
Microsoft.Extensions.FileProviders.IFileProvider ContentRootFileProvider { get; set; }
|
||||
string ContentRootPath { get; set; }
|
||||
string EnvironmentName { get; set; }
|
||||
Microsoft.Extensions.FileProviders.IFileProvider WebRootFileProvider { get; set; }
|
||||
string WebRootPath { get; set; }
|
||||
}
|
||||
public partial interface IStartup
|
||||
{
|
||||
void Configure(Microsoft.AspNetCore.Builder.IApplicationBuilder app);
|
||||
System.IServiceProvider ConfigureServices(Microsoft.Extensions.DependencyInjection.IServiceCollection services);
|
||||
}
|
||||
public partial interface IStartupFilter
|
||||
{
|
||||
System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> Configure(System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> next);
|
||||
}
|
||||
public partial interface IWebHost : System.IDisposable
|
||||
{
|
||||
Microsoft.AspNetCore.Http.Features.IFeatureCollection ServerFeatures { get; }
|
||||
System.IServiceProvider Services { get; }
|
||||
void Start();
|
||||
}
|
||||
public partial interface IWebHostBuilder
|
||||
{
|
||||
Microsoft.AspNetCore.Hosting.IWebHost Build();
|
||||
Microsoft.AspNetCore.Hosting.IWebHostBuilder ConfigureLogging(System.Action<Microsoft.Extensions.Logging.ILoggerFactory> configureLogging);
|
||||
Microsoft.AspNetCore.Hosting.IWebHostBuilder ConfigureServices(System.Action<Microsoft.Extensions.DependencyInjection.IServiceCollection> configureServices);
|
||||
string GetSetting(string key);
|
||||
Microsoft.AspNetCore.Hosting.IWebHostBuilder UseLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory loggerFactory);
|
||||
Microsoft.AspNetCore.Hosting.IWebHostBuilder UseSetting(string key, string value);
|
||||
}
|
||||
public static partial class WebHostDefaults
|
||||
{
|
||||
public static readonly string ApplicationKey;
|
||||
public static readonly string CaptureStartupErrorsKey;
|
||||
public static readonly string ContentRootKey;
|
||||
public static readonly string DetailedErrorsKey;
|
||||
public static readonly string EnvironmentKey;
|
||||
public static readonly string ServerUrlsKey;
|
||||
public static readonly string StartupAssemblyKey;
|
||||
public static readonly string WebRootKey;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
namespace Microsoft.AspNetCore.Hosting.Server
|
||||
{
|
||||
public partial interface IHttpApplication<TContext>
|
||||
{
|
||||
TContext CreateContext(Microsoft.AspNetCore.Http.Features.IFeatureCollection contextFeatures);
|
||||
void DisposeContext(TContext context, System.Exception exception);
|
||||
System.Threading.Tasks.Task ProcessRequestAsync(TContext context);
|
||||
}
|
||||
public partial interface IServer : System.IDisposable
|
||||
{
|
||||
Microsoft.AspNetCore.Http.Features.IFeatureCollection Features { get; }
|
||||
void Start<TContext>(Microsoft.AspNetCore.Hosting.Server.IHttpApplication<TContext> application);
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Hosting.Server.Features
|
||||
{
|
||||
public partial interface IServerAddressesFeature
|
||||
{
|
||||
System.Collections.Generic.ICollection<string> Addresses { get; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,164 @@
|
|||
namespace Microsoft.AspNetCore.Hosting
|
||||
{
|
||||
public partial class ConventionBasedStartup : Microsoft.AspNetCore.Hosting.IStartup
|
||||
{
|
||||
public ConventionBasedStartup(Microsoft.AspNetCore.Hosting.Internal.StartupMethods methods) { }
|
||||
public void Configure(Microsoft.AspNetCore.Builder.IApplicationBuilder app) { }
|
||||
public System.IServiceProvider ConfigureServices(Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
}
|
||||
public partial class DelegateStartup : Microsoft.AspNetCore.Hosting.StartupBase
|
||||
{
|
||||
public DelegateStartup(System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configureApp) { }
|
||||
public override void Configure(Microsoft.AspNetCore.Builder.IApplicationBuilder app) { }
|
||||
}
|
||||
public abstract partial class StartupBase : Microsoft.AspNetCore.Hosting.IStartup
|
||||
{
|
||||
protected StartupBase() { }
|
||||
public abstract void Configure(Microsoft.AspNetCore.Builder.IApplicationBuilder app);
|
||||
public virtual System.IServiceProvider ConfigureServices(Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
}
|
||||
public partial class WebHostBuilder : Microsoft.AspNetCore.Hosting.IWebHostBuilder
|
||||
{
|
||||
public WebHostBuilder() { }
|
||||
public Microsoft.AspNetCore.Hosting.IWebHost Build() { throw null; }
|
||||
public Microsoft.AspNetCore.Hosting.IWebHostBuilder ConfigureLogging(System.Action<Microsoft.Extensions.Logging.ILoggerFactory> configureLogging) { throw null; }
|
||||
public Microsoft.AspNetCore.Hosting.IWebHostBuilder ConfigureServices(System.Action<Microsoft.Extensions.DependencyInjection.IServiceCollection> configureServices) { throw null; }
|
||||
public string GetSetting(string key) { throw null; }
|
||||
public Microsoft.AspNetCore.Hosting.IWebHostBuilder UseLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory loggerFactory) { throw null; }
|
||||
public Microsoft.AspNetCore.Hosting.IWebHostBuilder UseSetting(string key, string value) { throw null; }
|
||||
}
|
||||
public static partial class WebHostBuilderExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder Configure(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configureApp) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseStartup(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder, System.Type startupType) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseStartup<TStartup>(this Microsoft.AspNetCore.Hosting.IWebHostBuilder hostBuilder) where TStartup : class { throw null; }
|
||||
}
|
||||
public static partial class WebHostExtensions
|
||||
{
|
||||
public static void Run(this Microsoft.AspNetCore.Hosting.IWebHost host) { }
|
||||
public static void Run(this Microsoft.AspNetCore.Hosting.IWebHost host, System.Threading.CancellationToken token) { }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Hosting.Builder
|
||||
{
|
||||
public partial class ApplicationBuilderFactory : Microsoft.AspNetCore.Hosting.Builder.IApplicationBuilderFactory
|
||||
{
|
||||
public ApplicationBuilderFactory(System.IServiceProvider serviceProvider) { }
|
||||
public Microsoft.AspNetCore.Builder.IApplicationBuilder CreateBuilder(Microsoft.AspNetCore.Http.Features.IFeatureCollection serverFeatures) { throw null; }
|
||||
}
|
||||
public partial interface IApplicationBuilderFactory
|
||||
{
|
||||
Microsoft.AspNetCore.Builder.IApplicationBuilder CreateBuilder(Microsoft.AspNetCore.Http.Features.IFeatureCollection serverFeatures);
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Hosting.Internal
|
||||
{
|
||||
public partial class ApplicationLifetime : Microsoft.AspNetCore.Hosting.IApplicationLifetime
|
||||
{
|
||||
public ApplicationLifetime() { }
|
||||
public System.Threading.CancellationToken ApplicationStarted { get { throw null; } }
|
||||
public System.Threading.CancellationToken ApplicationStopped { get { throw null; } }
|
||||
public System.Threading.CancellationToken ApplicationStopping { get { throw null; } }
|
||||
public void NotifyStarted() { }
|
||||
public void NotifyStopped() { }
|
||||
public void StopApplication() { }
|
||||
}
|
||||
public partial class AutoRequestServicesStartupFilter : Microsoft.AspNetCore.Hosting.IStartupFilter
|
||||
{
|
||||
public AutoRequestServicesStartupFilter() { }
|
||||
public System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> Configure(System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> next) { throw null; }
|
||||
}
|
||||
public partial class ConfigureBuilder
|
||||
{
|
||||
public ConfigureBuilder(System.Reflection.MethodInfo configure) { }
|
||||
public System.Reflection.MethodInfo MethodInfo { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> Build(object instance) { throw null; }
|
||||
}
|
||||
public partial class ConfigureServicesBuilder
|
||||
{
|
||||
public ConfigureServicesBuilder(System.Reflection.MethodInfo configureServices) { }
|
||||
public System.Reflection.MethodInfo MethodInfo { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Func<Microsoft.Extensions.DependencyInjection.IServiceCollection, System.IServiceProvider> Build(object instance) { throw null; }
|
||||
}
|
||||
public partial class HostingApplication : Microsoft.AspNetCore.Hosting.Server.IHttpApplication<Microsoft.AspNetCore.Hosting.Internal.HostingApplication.Context>
|
||||
{
|
||||
public HostingApplication(Microsoft.AspNetCore.Http.RequestDelegate application, Microsoft.Extensions.Logging.ILogger logger, System.Diagnostics.DiagnosticSource diagnosticSource, Microsoft.AspNetCore.Http.IHttpContextFactory httpContextFactory) { }
|
||||
public Microsoft.AspNetCore.Hosting.Internal.HostingApplication.Context CreateContext(Microsoft.AspNetCore.Http.Features.IFeatureCollection contextFeatures) { throw null; }
|
||||
public void DisposeContext(Microsoft.AspNetCore.Hosting.Internal.HostingApplication.Context context, System.Exception exception) { }
|
||||
public System.Threading.Tasks.Task ProcessRequestAsync(Microsoft.AspNetCore.Hosting.Internal.HostingApplication.Context context) { throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Context
|
||||
{
|
||||
public Microsoft.AspNetCore.Http.HttpContext HttpContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.IDisposable Scope { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public long StartTimestamp { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
public partial class HostingEnvironment : Microsoft.AspNetCore.Hosting.IHostingEnvironment
|
||||
{
|
||||
public HostingEnvironment() { }
|
||||
public string ApplicationName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.Extensions.FileProviders.IFileProvider ContentRootFileProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string ContentRootPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string EnvironmentName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.Extensions.FileProviders.IFileProvider WebRootFileProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string WebRootPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class HostingEnvironmentExtensions
|
||||
{
|
||||
public static void Initialize(this Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnvironment, string applicationName, string contentRootPath, Microsoft.AspNetCore.Hosting.Internal.WebHostOptions options) { }
|
||||
}
|
||||
public partial class RequestServicesContainerMiddleware
|
||||
{
|
||||
public RequestServicesContainerMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.DependencyInjection.IServiceScopeFactory scopeFactory) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext httpContext) { throw null; }
|
||||
}
|
||||
public partial class RequestServicesFeature : Microsoft.AspNetCore.Http.Features.IServiceProvidersFeature, System.IDisposable
|
||||
{
|
||||
public RequestServicesFeature(Microsoft.Extensions.DependencyInjection.IServiceScopeFactory scopeFactory) { }
|
||||
public System.IServiceProvider RequestServices { get { throw null; } set { } }
|
||||
public void Dispose() { }
|
||||
}
|
||||
public partial class StartupLoader
|
||||
{
|
||||
public StartupLoader() { }
|
||||
public static System.Type FindStartupType(string startupAssemblyName, string environmentName) { throw null; }
|
||||
public static Microsoft.AspNetCore.Hosting.Internal.StartupMethods LoadMethods(System.IServiceProvider services, System.Type startupType, string environmentName) { throw null; }
|
||||
}
|
||||
public partial class StartupMethods
|
||||
{
|
||||
public StartupMethods(System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configure) { }
|
||||
public StartupMethods(System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configure, System.Func<Microsoft.Extensions.DependencyInjection.IServiceCollection, System.IServiceProvider> configureServices) { }
|
||||
public System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> ConfigureDelegate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Func<Microsoft.Extensions.DependencyInjection.IServiceCollection, System.IServiceProvider> ConfigureServicesDelegate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public partial class WebHost : Microsoft.AspNetCore.Hosting.IWebHost, System.IDisposable
|
||||
{
|
||||
public WebHost(Microsoft.Extensions.DependencyInjection.IServiceCollection appServices, System.IServiceProvider hostingServiceProvider, Microsoft.AspNetCore.Hosting.Internal.WebHostOptions options, Microsoft.Extensions.Configuration.IConfiguration config) { }
|
||||
public Microsoft.AspNetCore.Http.Features.IFeatureCollection ServerFeatures { get { throw null; } }
|
||||
public System.IServiceProvider Services { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public void Initialize() { }
|
||||
public virtual void Start() { }
|
||||
}
|
||||
public partial class WebHostOptions
|
||||
{
|
||||
public WebHostOptions() { }
|
||||
public WebHostOptions(Microsoft.Extensions.Configuration.IConfiguration configuration) { }
|
||||
public string ApplicationName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool CaptureStartupErrors { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string ContentRootPath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool DetailedErrors { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Environment { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string StartupAssembly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string WebRoot { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Hosting.Server.Features
|
||||
{
|
||||
public partial class ServerAddressesFeature : Microsoft.AspNetCore.Hosting.Server.Features.IServerAddressesFeature
|
||||
{
|
||||
public ServerAddressesFeature() { }
|
||||
public System.Collections.Generic.ICollection<string> Addresses { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,351 @@
|
|||
namespace Microsoft.AspNetCore.Builder
|
||||
{
|
||||
public partial interface IApplicationBuilder
|
||||
{
|
||||
System.IServiceProvider ApplicationServices { get; set; }
|
||||
System.Collections.Generic.IDictionary<string, object> Properties { get; }
|
||||
Microsoft.AspNetCore.Http.Features.IFeatureCollection ServerFeatures { get; }
|
||||
Microsoft.AspNetCore.Http.RequestDelegate Build();
|
||||
Microsoft.AspNetCore.Builder.IApplicationBuilder New();
|
||||
Microsoft.AspNetCore.Builder.IApplicationBuilder Use(System.Func<Microsoft.AspNetCore.Http.RequestDelegate, Microsoft.AspNetCore.Http.RequestDelegate> middleware);
|
||||
}
|
||||
public static partial class MapExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder Map(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Http.PathString pathMatch, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configuration) { throw null; }
|
||||
}
|
||||
public static partial class MapWhenExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder MapWhen(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, System.Func<Microsoft.AspNetCore.Http.HttpContext, bool> predicate, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> configuration) { throw null; }
|
||||
}
|
||||
public static partial class RunExtensions
|
||||
{
|
||||
public static void Run(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Http.RequestDelegate handler) { }
|
||||
}
|
||||
public static partial class UseExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder Use(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, System.Func<Microsoft.AspNetCore.Http.HttpContext, System.Func<System.Threading.Tasks.Task>, System.Threading.Tasks.Task> middleware) { throw null; }
|
||||
}
|
||||
public static partial class UseMiddlewareExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseMiddleware(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, System.Type middleware, params object[] args) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseMiddleware<TMiddleware>(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, params object[] args) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Builder.Extensions
|
||||
{
|
||||
public partial class MapMiddleware
|
||||
{
|
||||
public MapMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.AspNetCore.Builder.Extensions.MapOptions options) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class MapOptions
|
||||
{
|
||||
public MapOptions() { }
|
||||
public Microsoft.AspNetCore.Http.RequestDelegate Branch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Http.PathString PathMatch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class MapWhenMiddleware
|
||||
{
|
||||
public MapWhenMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.AspNetCore.Builder.Extensions.MapWhenOptions options) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class MapWhenOptions
|
||||
{
|
||||
public MapWhenOptions() { }
|
||||
public Microsoft.AspNetCore.Http.RequestDelegate Branch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Func<Microsoft.AspNetCore.Http.HttpContext, bool> Predicate { get { throw null; } set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http
|
||||
{
|
||||
public abstract partial class ConnectionInfo
|
||||
{
|
||||
protected ConnectionInfo() { }
|
||||
public abstract System.Security.Cryptography.X509Certificates.X509Certificate2 ClientCertificate { get; set; }
|
||||
public abstract System.Net.IPAddress LocalIpAddress { get; set; }
|
||||
public abstract int LocalPort { get; set; }
|
||||
public abstract System.Net.IPAddress RemoteIpAddress { get; set; }
|
||||
public abstract int RemotePort { get; set; }
|
||||
public abstract System.Threading.Tasks.Task<System.Security.Cryptography.X509Certificates.X509Certificate2> GetClientCertificateAsync(System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken));
|
||||
}
|
||||
public enum CookieSecurePolicy
|
||||
{
|
||||
Always = 1,
|
||||
None = 2,
|
||||
SameAsRequest = 0,
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct FragmentString : System.IEquatable<Microsoft.AspNetCore.Http.FragmentString>
|
||||
{
|
||||
public static readonly Microsoft.AspNetCore.Http.FragmentString Empty;
|
||||
public FragmentString(string value) { throw null;}
|
||||
public bool HasValue { get { throw null; } }
|
||||
public string Value { get { throw null; } }
|
||||
public bool Equals(Microsoft.AspNetCore.Http.FragmentString other) { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.FragmentString FromUriComponent(string uriComponent) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.FragmentString FromUriComponent(System.Uri uri) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static bool operator ==(Microsoft.AspNetCore.Http.FragmentString left, Microsoft.AspNetCore.Http.FragmentString right) { throw null; }
|
||||
public static bool operator !=(Microsoft.AspNetCore.Http.FragmentString left, Microsoft.AspNetCore.Http.FragmentString right) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public string ToUriComponent() { throw null; }
|
||||
}
|
||||
public static partial class HeaderDictionaryExtensions
|
||||
{
|
||||
public static void Append(this Microsoft.AspNetCore.Http.IHeaderDictionary headers, string key, Microsoft.Extensions.Primitives.StringValues value) { }
|
||||
public static void AppendCommaSeparatedValues(this Microsoft.AspNetCore.Http.IHeaderDictionary headers, string key, params string[] values) { }
|
||||
public static string[] GetCommaSeparatedValues(this Microsoft.AspNetCore.Http.IHeaderDictionary headers, string key) { throw null; }
|
||||
public static void SetCommaSeparatedValues(this Microsoft.AspNetCore.Http.IHeaderDictionary headers, string key, params string[] values) { }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct HostString : System.IEquatable<Microsoft.AspNetCore.Http.HostString>
|
||||
{
|
||||
public HostString(string value) { throw null;}
|
||||
public HostString(string host, int port) { throw null;}
|
||||
public bool HasValue { get { throw null; } }
|
||||
public string Host { get { throw null; } }
|
||||
public System.Nullable<int> Port { get { throw null; } }
|
||||
public string Value { get { throw null; } }
|
||||
public bool Equals(Microsoft.AspNetCore.Http.HostString other) { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.HostString FromUriComponent(string uriComponent) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.HostString FromUriComponent(System.Uri uri) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static bool operator ==(Microsoft.AspNetCore.Http.HostString left, Microsoft.AspNetCore.Http.HostString right) { throw null; }
|
||||
public static bool operator !=(Microsoft.AspNetCore.Http.HostString left, Microsoft.AspNetCore.Http.HostString right) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public string ToUriComponent() { throw null; }
|
||||
}
|
||||
public abstract partial class HttpContext
|
||||
{
|
||||
protected HttpContext() { }
|
||||
public abstract Microsoft.AspNetCore.Http.Authentication.AuthenticationManager Authentication { get; }
|
||||
public abstract Microsoft.AspNetCore.Http.ConnectionInfo Connection { get; }
|
||||
public abstract Microsoft.AspNetCore.Http.Features.IFeatureCollection Features { get; }
|
||||
public abstract System.Collections.Generic.IDictionary<object, object> Items { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.HttpRequest Request { get; }
|
||||
public abstract System.Threading.CancellationToken RequestAborted { get; set; }
|
||||
public abstract System.IServiceProvider RequestServices { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.HttpResponse Response { get; }
|
||||
public abstract Microsoft.AspNetCore.Http.ISession Session { get; set; }
|
||||
public abstract string TraceIdentifier { get; set; }
|
||||
public abstract System.Security.Claims.ClaimsPrincipal User { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.WebSocketManager WebSockets { get; }
|
||||
public abstract void Abort();
|
||||
}
|
||||
public abstract partial class HttpRequest
|
||||
{
|
||||
protected HttpRequest() { }
|
||||
public abstract System.IO.Stream Body { get; set; }
|
||||
public abstract System.Nullable<long> ContentLength { get; set; }
|
||||
public abstract string ContentType { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.IRequestCookieCollection Cookies { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.IFormCollection Form { get; set; }
|
||||
public abstract bool HasFormContentType { get; }
|
||||
public abstract Microsoft.AspNetCore.Http.IHeaderDictionary Headers { get; }
|
||||
public abstract Microsoft.AspNetCore.Http.HostString Host { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.HttpContext HttpContext { get; }
|
||||
public abstract bool IsHttps { get; set; }
|
||||
public abstract string Method { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.PathString Path { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.PathString PathBase { get; set; }
|
||||
public abstract string Protocol { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.IQueryCollection Query { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.QueryString QueryString { get; set; }
|
||||
public abstract string Scheme { get; set; }
|
||||
public abstract System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.IFormCollection> ReadFormAsync(System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken));
|
||||
}
|
||||
public abstract partial class HttpResponse
|
||||
{
|
||||
protected HttpResponse() { }
|
||||
public abstract System.IO.Stream Body { get; set; }
|
||||
public abstract System.Nullable<long> ContentLength { get; set; }
|
||||
public abstract string ContentType { get; set; }
|
||||
public abstract Microsoft.AspNetCore.Http.IResponseCookies Cookies { get; }
|
||||
public abstract bool HasStarted { get; }
|
||||
public abstract Microsoft.AspNetCore.Http.IHeaderDictionary Headers { get; }
|
||||
public abstract Microsoft.AspNetCore.Http.HttpContext HttpContext { get; }
|
||||
public abstract int StatusCode { get; set; }
|
||||
public abstract void OnCompleted(System.Func<object, System.Threading.Tasks.Task> callback, object state);
|
||||
public virtual void OnCompleted(System.Func<System.Threading.Tasks.Task> callback) { }
|
||||
public abstract void OnStarting(System.Func<object, System.Threading.Tasks.Task> callback, object state);
|
||||
public virtual void OnStarting(System.Func<System.Threading.Tasks.Task> callback) { }
|
||||
public virtual void Redirect(string location) { }
|
||||
public abstract void Redirect(string location, bool permanent);
|
||||
public virtual void RegisterForDispose(System.IDisposable disposable) { }
|
||||
}
|
||||
public static partial class HttpResponseWritingExtensions
|
||||
{
|
||||
public static System.Threading.Tasks.Task WriteAsync(this Microsoft.AspNetCore.Http.HttpResponse response, string text, System.Text.Encoding encoding, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
public static System.Threading.Tasks.Task WriteAsync(this Microsoft.AspNetCore.Http.HttpResponse response, string text, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
}
|
||||
public partial interface IHttpContextAccessor
|
||||
{
|
||||
Microsoft.AspNetCore.Http.HttpContext HttpContext { get; set; }
|
||||
}
|
||||
public partial interface IHttpContextFactory
|
||||
{
|
||||
Microsoft.AspNetCore.Http.HttpContext Create(Microsoft.AspNetCore.Http.Features.IFeatureCollection featureCollection);
|
||||
void Dispose(Microsoft.AspNetCore.Http.HttpContext httpContext);
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct PathString : System.IEquatable<Microsoft.AspNetCore.Http.PathString>
|
||||
{
|
||||
public static readonly Microsoft.AspNetCore.Http.PathString Empty;
|
||||
public PathString(string value) { throw null;}
|
||||
public bool HasValue { get { throw null; } }
|
||||
public string Value { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.PathString Add(Microsoft.AspNetCore.Http.PathString other) { throw null; }
|
||||
public string Add(Microsoft.AspNetCore.Http.QueryString other) { throw null; }
|
||||
public bool Equals(Microsoft.AspNetCore.Http.PathString other) { throw null; }
|
||||
public bool Equals(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType) { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.PathString FromUriComponent(string uriComponent) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.PathString FromUriComponent(System.Uri uri) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.PathString operator +(Microsoft.AspNetCore.Http.PathString left, Microsoft.AspNetCore.Http.PathString right) { throw null; }
|
||||
public static string operator +(Microsoft.AspNetCore.Http.PathString left, Microsoft.AspNetCore.Http.QueryString right) { throw null; }
|
||||
public static string operator +(Microsoft.AspNetCore.Http.PathString left, string right) { throw null; }
|
||||
public static string operator +(string left, Microsoft.AspNetCore.Http.PathString right) { throw null; }
|
||||
public static bool operator ==(Microsoft.AspNetCore.Http.PathString left, Microsoft.AspNetCore.Http.PathString right) { throw null; }
|
||||
public static implicit operator string (Microsoft.AspNetCore.Http.PathString path) { throw null; }
|
||||
public static implicit operator Microsoft.AspNetCore.Http.PathString (string s) { throw null; }
|
||||
public static bool operator !=(Microsoft.AspNetCore.Http.PathString left, Microsoft.AspNetCore.Http.PathString right) { throw null; }
|
||||
public bool StartsWithSegments(Microsoft.AspNetCore.Http.PathString other) { throw null; }
|
||||
public bool StartsWithSegments(Microsoft.AspNetCore.Http.PathString other, out Microsoft.AspNetCore.Http.PathString remaining) { remaining = default(Microsoft.AspNetCore.Http.PathString); throw null; }
|
||||
public bool StartsWithSegments(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType) { throw null; }
|
||||
public bool StartsWithSegments(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType, out Microsoft.AspNetCore.Http.PathString remaining) { remaining = default(Microsoft.AspNetCore.Http.PathString); throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public string ToUriComponent() { throw null; }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct QueryString : System.IEquatable<Microsoft.AspNetCore.Http.QueryString>
|
||||
{
|
||||
public static readonly Microsoft.AspNetCore.Http.QueryString Empty;
|
||||
public QueryString(string value) { throw null;}
|
||||
public bool HasValue { get { throw null; } }
|
||||
public string Value { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.QueryString Add(Microsoft.AspNetCore.Http.QueryString other) { throw null; }
|
||||
public Microsoft.AspNetCore.Http.QueryString Add(string name, string value) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.QueryString Create(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>> parameters) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.QueryString Create(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> parameters) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.QueryString Create(string name, string value) { throw null; }
|
||||
public bool Equals(Microsoft.AspNetCore.Http.QueryString other) { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.QueryString FromUriComponent(string uriComponent) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.QueryString FromUriComponent(System.Uri uri) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.QueryString operator +(Microsoft.AspNetCore.Http.QueryString left, Microsoft.AspNetCore.Http.QueryString right) { throw null; }
|
||||
public static bool operator ==(Microsoft.AspNetCore.Http.QueryString left, Microsoft.AspNetCore.Http.QueryString right) { throw null; }
|
||||
public static bool operator !=(Microsoft.AspNetCore.Http.QueryString left, Microsoft.AspNetCore.Http.QueryString right) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public string ToUriComponent() { throw null; }
|
||||
}
|
||||
public delegate System.Threading.Tasks.Task RequestDelegate(Microsoft.AspNetCore.Http.HttpContext context);
|
||||
public static partial class StatusCodes
|
||||
{
|
||||
public const int Status200OK = 200;
|
||||
public const int Status201Created = 201;
|
||||
public const int Status202Accepted = 202;
|
||||
public const int Status203NonAuthoritative = 203;
|
||||
public const int Status204NoContent = 204;
|
||||
public const int Status205ResetContent = 205;
|
||||
public const int Status206PartialContent = 206;
|
||||
public const int Status300MultipleChoices = 300;
|
||||
public const int Status301MovedPermanently = 301;
|
||||
public const int Status302Found = 302;
|
||||
public const int Status303SeeOther = 303;
|
||||
public const int Status304NotModified = 304;
|
||||
public const int Status305UseProxy = 305;
|
||||
public const int Status306SwitchProxy = 306;
|
||||
public const int Status307TemporaryRedirect = 307;
|
||||
public const int Status400BadRequest = 400;
|
||||
public const int Status401Unauthorized = 401;
|
||||
public const int Status402PaymentRequired = 402;
|
||||
public const int Status403Forbidden = 403;
|
||||
public const int Status404NotFound = 404;
|
||||
public const int Status405MethodNotAllowed = 405;
|
||||
public const int Status406NotAcceptable = 406;
|
||||
public const int Status407ProxyAuthenticationRequired = 407;
|
||||
public const int Status408RequestTimeout = 408;
|
||||
public const int Status409Conflict = 409;
|
||||
public const int Status410Gone = 410;
|
||||
public const int Status411LengthRequired = 411;
|
||||
public const int Status412PreconditionFailed = 412;
|
||||
public const int Status413RequestEntityTooLarge = 413;
|
||||
public const int Status414RequestUriTooLong = 414;
|
||||
public const int Status415UnsupportedMediaType = 415;
|
||||
public const int Status416RequestedRangeNotSatisfiable = 416;
|
||||
public const int Status417ExpectationFailed = 417;
|
||||
public const int Status418ImATeapot = 418;
|
||||
public const int Status419AuthenticationTimeout = 419;
|
||||
public const int Status500InternalServerError = 500;
|
||||
public const int Status501NotImplemented = 501;
|
||||
public const int Status502BadGateway = 502;
|
||||
public const int Status503ServiceUnavailable = 503;
|
||||
public const int Status504GatewayTimeout = 504;
|
||||
public const int Status505HttpVersionNotsupported = 505;
|
||||
public const int Status506VariantAlsoNegotiates = 506;
|
||||
}
|
||||
public abstract partial class WebSocketManager
|
||||
{
|
||||
protected WebSocketManager() { }
|
||||
public abstract bool IsWebSocketRequest { get; }
|
||||
public abstract System.Collections.Generic.IList<string> WebSocketRequestedProtocols { get; }
|
||||
public virtual System.Threading.Tasks.Task<System.Net.WebSockets.WebSocket> AcceptWebSocketAsync() { throw null; }
|
||||
public abstract System.Threading.Tasks.Task<System.Net.WebSockets.WebSocket> AcceptWebSocketAsync(string subProtocol);
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Authentication
|
||||
{
|
||||
public partial class AuthenticateInfo
|
||||
{
|
||||
public AuthenticateInfo() { }
|
||||
public Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription Description { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Security.Claims.ClaimsPrincipal Principal { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class AuthenticationDescription
|
||||
{
|
||||
public AuthenticationDescription() { }
|
||||
public AuthenticationDescription(System.Collections.Generic.IDictionary<string, object> items) { }
|
||||
public string AuthenticationScheme { get { throw null; } set { } }
|
||||
public string DisplayName { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IDictionary<string, object> Items { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public abstract partial class AuthenticationManager
|
||||
{
|
||||
public const string AutomaticScheme = "Automatic";
|
||||
protected AuthenticationManager() { }
|
||||
public abstract Microsoft.AspNetCore.Http.HttpContext HttpContext { get; }
|
||||
public abstract System.Threading.Tasks.Task AuthenticateAsync(Microsoft.AspNetCore.Http.Features.Authentication.AuthenticateContext context);
|
||||
public virtual System.Threading.Tasks.Task<System.Security.Claims.ClaimsPrincipal> AuthenticateAsync(string authenticationScheme) { throw null; }
|
||||
public virtual System.Threading.Tasks.Task ChallengeAsync() { throw null; }
|
||||
public virtual System.Threading.Tasks.Task ChallengeAsync(Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties) { throw null; }
|
||||
public virtual System.Threading.Tasks.Task ChallengeAsync(string authenticationScheme) { throw null; }
|
||||
public virtual System.Threading.Tasks.Task ChallengeAsync(string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties) { throw null; }
|
||||
public abstract System.Threading.Tasks.Task ChallengeAsync(string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties, Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior behavior);
|
||||
public virtual System.Threading.Tasks.Task ForbidAsync() { throw null; }
|
||||
public virtual System.Threading.Tasks.Task ForbidAsync(Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties) { throw null; }
|
||||
public virtual System.Threading.Tasks.Task ForbidAsync(string authenticationScheme) { throw null; }
|
||||
public virtual System.Threading.Tasks.Task ForbidAsync(string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties) { throw null; }
|
||||
public abstract System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo> GetAuthenticateInfoAsync(string authenticationScheme);
|
||||
public abstract System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription> GetAuthenticationSchemes();
|
||||
public virtual System.Threading.Tasks.Task SignInAsync(string authenticationScheme, System.Security.Claims.ClaimsPrincipal principal) { throw null; }
|
||||
public abstract System.Threading.Tasks.Task SignInAsync(string authenticationScheme, System.Security.Claims.ClaimsPrincipal principal, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
|
||||
public virtual System.Threading.Tasks.Task SignOutAsync(string authenticationScheme) { throw null; }
|
||||
public abstract System.Threading.Tasks.Task SignOutAsync(string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties);
|
||||
}
|
||||
public partial class AuthenticationProperties
|
||||
{
|
||||
public AuthenticationProperties() { }
|
||||
public AuthenticationProperties(System.Collections.Generic.IDictionary<string, string> items) { }
|
||||
public System.Nullable<bool> AllowRefresh { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> ExpiresUtc { get { throw null; } set { } }
|
||||
public bool IsPersistent { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> IssuedUtc { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IDictionary<string, string> Items { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string RedirectUri { get { throw null; } set { } }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,112 @@
|
|||
namespace Microsoft.AspNetCore.Http
|
||||
{
|
||||
public static partial class HeaderDictionaryTypeExtensions
|
||||
{
|
||||
public static void AppendList<T>(this Microsoft.AspNetCore.Http.IHeaderDictionary Headers, string name, System.Collections.Generic.IList<T> values) { }
|
||||
public static Microsoft.AspNetCore.Http.Headers.RequestHeaders GetTypedHeaders(this Microsoft.AspNetCore.Http.HttpRequest request) { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.Headers.ResponseHeaders GetTypedHeaders(this Microsoft.AspNetCore.Http.HttpResponse response) { throw null; }
|
||||
}
|
||||
public static partial class ResponseExtensions
|
||||
{
|
||||
public static void Clear(this Microsoft.AspNetCore.Http.HttpResponse response) { }
|
||||
}
|
||||
public static partial class SendFileResponseExtensions
|
||||
{
|
||||
public static System.Threading.Tasks.Task SendFileAsync(this Microsoft.AspNetCore.Http.HttpResponse response, Microsoft.Extensions.FileProviders.IFileInfo file, long offset, System.Nullable<long> count, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
public static System.Threading.Tasks.Task SendFileAsync(this Microsoft.AspNetCore.Http.HttpResponse response, Microsoft.Extensions.FileProviders.IFileInfo file, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
public static System.Threading.Tasks.Task SendFileAsync(this Microsoft.AspNetCore.Http.HttpResponse response, string fileName, long offset, System.Nullable<long> count, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
public static System.Threading.Tasks.Task SendFileAsync(this Microsoft.AspNetCore.Http.HttpResponse response, string fileName, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
}
|
||||
public static partial class SessionExtensions
|
||||
{
|
||||
public static byte[] Get(this Microsoft.AspNetCore.Http.ISession session, string key) { throw null; }
|
||||
public static System.Nullable<int> GetInt32(this Microsoft.AspNetCore.Http.ISession session, string key) { throw null; }
|
||||
public static string GetString(this Microsoft.AspNetCore.Http.ISession session, string key) { throw null; }
|
||||
public static void SetInt32(this Microsoft.AspNetCore.Http.ISession session, string key, int value) { }
|
||||
public static void SetString(this Microsoft.AspNetCore.Http.ISession session, string key, string value) { }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Extensions
|
||||
{
|
||||
public partial class QueryBuilder : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>, System.Collections.IEnumerable
|
||||
{
|
||||
public QueryBuilder() { }
|
||||
public QueryBuilder(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> parameters) { }
|
||||
public void Add(string key, System.Collections.Generic.IEnumerable<string> values) { }
|
||||
public void Add(string key, string value) { }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, string>> GetEnumerator() { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public Microsoft.AspNetCore.Http.QueryString ToQueryString() { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
}
|
||||
public static partial class StreamCopyOperation
|
||||
{
|
||||
public static System.Threading.Tasks.Task CopyToAsync(System.IO.Stream source, System.IO.Stream destination, System.Nullable<long> count, System.Threading.CancellationToken cancel) { throw null; }
|
||||
}
|
||||
public static partial class UriHelper
|
||||
{
|
||||
public static string BuildAbsolute(string scheme, Microsoft.AspNetCore.Http.HostString host, Microsoft.AspNetCore.Http.PathString pathBase= default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.PathString path= default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.QueryString query= default(Microsoft.AspNetCore.Http.QueryString), Microsoft.AspNetCore.Http.FragmentString fragment= default(Microsoft.AspNetCore.Http.FragmentString)) { throw null; }
|
||||
public static string BuildRelative(Microsoft.AspNetCore.Http.PathString pathBase=default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.PathString path= default(Microsoft.AspNetCore.Http.PathString), Microsoft.AspNetCore.Http.QueryString query= default(Microsoft.AspNetCore.Http.QueryString), Microsoft.AspNetCore.Http.FragmentString fragment= default(Microsoft.AspNetCore.Http.FragmentString)) { throw null; }
|
||||
public static string Encode(System.Uri uri) { throw null; }
|
||||
public static string GetDisplayUrl(this Microsoft.AspNetCore.Http.HttpRequest request) { throw null; }
|
||||
public static string GetEncodedUrl(this Microsoft.AspNetCore.Http.HttpRequest request) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Headers
|
||||
{
|
||||
public partial class RequestHeaders
|
||||
{
|
||||
public RequestHeaders(Microsoft.AspNetCore.Http.IHeaderDictionary headers) { }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.MediaTypeHeaderValue> Accept { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue> AcceptCharset { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue> AcceptEncoding { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue> AcceptLanguage { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.CacheControlHeaderValue CacheControl { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.ContentDispositionHeaderValue ContentDisposition { get { throw null; } set { } }
|
||||
public System.Nullable<long> ContentLength { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.ContentRangeHeaderValue ContentRange { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.MediaTypeHeaderValue ContentType { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.CookieHeaderValue> Cookie { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> Date { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> Expires { get { throw null; } set { } }
|
||||
public Microsoft.AspNetCore.Http.IHeaderDictionary Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.HostString Host { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue> IfMatch { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> IfModifiedSince { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue> IfNoneMatch { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.RangeConditionHeaderValue IfRange { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> IfUnmodifiedSince { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> LastModified { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.RangeHeaderValue Range { get { throw null; } set { } }
|
||||
public void Append(string name, object value) { }
|
||||
public void AppendList<T>(string name, System.Collections.Generic.IList<T> values) { }
|
||||
public T Get<T>(string name) { throw null; }
|
||||
public System.Collections.Generic.IList<T> GetList<T>(string name) { throw null; }
|
||||
public void Set(string name, object value) { }
|
||||
public void SetList<T>(string name, System.Collections.Generic.IList<T> values) { }
|
||||
}
|
||||
public partial class ResponseHeaders
|
||||
{
|
||||
public ResponseHeaders(Microsoft.AspNetCore.Http.IHeaderDictionary headers) { }
|
||||
public Microsoft.Net.Http.Headers.CacheControlHeaderValue CacheControl { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.ContentDispositionHeaderValue ContentDisposition { get { throw null; } set { } }
|
||||
public System.Nullable<long> ContentLength { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.ContentRangeHeaderValue ContentRange { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.MediaTypeHeaderValue ContentType { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> Date { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.EntityTagHeaderValue ETag { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> Expires { get { throw null; } set { } }
|
||||
public Microsoft.AspNetCore.Http.IHeaderDictionary Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Nullable<System.DateTimeOffset> LastModified { get { throw null; } set { } }
|
||||
public System.Uri Location { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.SetCookieHeaderValue> SetCookie { get { throw null; } set { } }
|
||||
public void Append(string name, object value) { }
|
||||
public void AppendList<T>(string name, System.Collections.Generic.IList<T> values) { }
|
||||
public T Get<T>(string name) { throw null; }
|
||||
public System.Collections.Generic.IList<T> GetList<T>(string name) { throw null; }
|
||||
public void Set(string name, object value) { }
|
||||
public void SetList<T>(string name, System.Collections.Generic.IList<T> values) { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,290 @@
|
|||
namespace Microsoft.AspNetCore.Http
|
||||
{
|
||||
public partial class CookieOptions
|
||||
{
|
||||
public CookieOptions() { }
|
||||
public string Domain { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Nullable<System.DateTimeOffset> Expires { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool HttpOnly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Path { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool Secure { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial interface IFormCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerable
|
||||
{
|
||||
int Count { get; }
|
||||
Microsoft.AspNetCore.Http.IFormFileCollection Files { get; }
|
||||
Microsoft.Extensions.Primitives.StringValues this[string key] { get; }
|
||||
System.Collections.Generic.ICollection<string> Keys { get; }
|
||||
bool ContainsKey(string key);
|
||||
bool TryGetValue(string key, out Microsoft.Extensions.Primitives.StringValues value);
|
||||
}
|
||||
public partial interface IFormFile
|
||||
{
|
||||
string ContentDisposition { get; }
|
||||
string ContentType { get; }
|
||||
string FileName { get; }
|
||||
Microsoft.AspNetCore.Http.IHeaderDictionary Headers { get; }
|
||||
long Length { get; }
|
||||
string Name { get; }
|
||||
void CopyTo(System.IO.Stream target);
|
||||
System.Threading.Tasks.Task CopyToAsync(System.IO.Stream target, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken));
|
||||
System.IO.Stream OpenReadStream();
|
||||
}
|
||||
public partial interface IFormFileCollection : System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.Generic.IReadOnlyCollection<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.IEnumerable
|
||||
{
|
||||
Microsoft.AspNetCore.Http.IFormFile this[string name] { get; }
|
||||
Microsoft.AspNetCore.Http.IFormFile GetFile(string name);
|
||||
System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile> GetFiles(string name);
|
||||
}
|
||||
public partial interface IHeaderDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.Generic.IDictionary<string, Microsoft.Extensions.Primitives.StringValues>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerable
|
||||
{
|
||||
new Microsoft.Extensions.Primitives.StringValues this[string key] { get; set; }
|
||||
}
|
||||
public partial interface IQueryCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerable
|
||||
{
|
||||
int Count { get; }
|
||||
Microsoft.Extensions.Primitives.StringValues this[string key] { get; }
|
||||
System.Collections.Generic.ICollection<string> Keys { get; }
|
||||
bool ContainsKey(string key);
|
||||
bool TryGetValue(string key, out Microsoft.Extensions.Primitives.StringValues value);
|
||||
}
|
||||
public partial interface IRequestCookieCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>, System.Collections.IEnumerable
|
||||
{
|
||||
int Count { get; }
|
||||
string this[string key] { get; }
|
||||
System.Collections.Generic.ICollection<string> Keys { get; }
|
||||
bool ContainsKey(string key);
|
||||
bool TryGetValue(string key, out string value);
|
||||
}
|
||||
public partial interface IResponseCookies
|
||||
{
|
||||
void Append(string key, string value);
|
||||
void Append(string key, string value, Microsoft.AspNetCore.Http.CookieOptions options);
|
||||
void Delete(string key);
|
||||
void Delete(string key, Microsoft.AspNetCore.Http.CookieOptions options);
|
||||
}
|
||||
public partial interface ISession
|
||||
{
|
||||
string Id { get; }
|
||||
bool IsAvailable { get; }
|
||||
System.Collections.Generic.IEnumerable<string> Keys { get; }
|
||||
void Clear();
|
||||
System.Threading.Tasks.Task CommitAsync();
|
||||
System.Threading.Tasks.Task LoadAsync();
|
||||
void Remove(string key);
|
||||
void Set(string key, byte[] value);
|
||||
bool TryGetValue(string key, out byte[] value);
|
||||
}
|
||||
public partial class WebSocketAcceptContext
|
||||
{
|
||||
public WebSocketAcceptContext() { }
|
||||
public virtual string SubProtocol { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Features
|
||||
{
|
||||
public partial class FeatureCollection : Microsoft.AspNetCore.Http.Features.IFeatureCollection, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Type, object>>, System.Collections.IEnumerable
|
||||
{
|
||||
public FeatureCollection() { }
|
||||
public FeatureCollection(Microsoft.AspNetCore.Http.Features.IFeatureCollection defaults) { }
|
||||
public bool IsReadOnly { get { throw null; } }
|
||||
public object this[System.Type key] { get { throw null; } set { } }
|
||||
public virtual int Revision { get { throw null; } }
|
||||
public TFeature Get<TFeature>() { throw null; }
|
||||
public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Type, object>> GetEnumerator() { throw null; }
|
||||
public void Set<TFeature>(TFeature instance) { }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct FeatureReference<T>
|
||||
{
|
||||
public static readonly Microsoft.AspNetCore.Http.Features.FeatureReference<T> Default;
|
||||
public T Fetch(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { throw null; }
|
||||
public T Update(Microsoft.AspNetCore.Http.Features.IFeatureCollection features, T feature) { throw null; }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct FeatureReferences<TCache>
|
||||
{
|
||||
public TCache Cache;
|
||||
public FeatureReferences(Microsoft.AspNetCore.Http.Features.IFeatureCollection collection) { throw null;}
|
||||
public Microsoft.AspNetCore.Http.Features.IFeatureCollection Collection { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int Revision { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public TFeature Fetch<TFeature>(ref TFeature cached, System.Func<Microsoft.AspNetCore.Http.Features.IFeatureCollection, TFeature> factory) where TFeature : class { throw null; }
|
||||
public TFeature Fetch<TFeature, TState>(ref TFeature cached, TState state, System.Func<TState, TFeature> factory) where TFeature : class { throw null; }
|
||||
}
|
||||
public partial interface IFeatureCollection : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Type, object>>, System.Collections.IEnumerable
|
||||
{
|
||||
bool IsReadOnly { get; }
|
||||
object this[System.Type key] { get; set; }
|
||||
int Revision { get; }
|
||||
TFeature Get<TFeature>();
|
||||
void Set<TFeature>(TFeature instance);
|
||||
}
|
||||
public partial interface IFormFeature
|
||||
{
|
||||
Microsoft.AspNetCore.Http.IFormCollection Form { get; set; }
|
||||
bool HasFormContentType { get; }
|
||||
Microsoft.AspNetCore.Http.IFormCollection ReadForm();
|
||||
System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.IFormCollection> ReadFormAsync(System.Threading.CancellationToken cancellationToken);
|
||||
}
|
||||
public partial interface IHttpBufferingFeature
|
||||
{
|
||||
void DisableRequestBuffering();
|
||||
void DisableResponseBuffering();
|
||||
}
|
||||
public partial interface IHttpConnectionFeature
|
||||
{
|
||||
string ConnectionId { get; set; }
|
||||
System.Net.IPAddress LocalIpAddress { get; set; }
|
||||
int LocalPort { get; set; }
|
||||
System.Net.IPAddress RemoteIpAddress { get; set; }
|
||||
int RemotePort { get; set; }
|
||||
}
|
||||
public partial interface IHttpRequestFeature
|
||||
{
|
||||
System.IO.Stream Body { get; set; }
|
||||
Microsoft.AspNetCore.Http.IHeaderDictionary Headers { get; set; }
|
||||
string Method { get; set; }
|
||||
string Path { get; set; }
|
||||
string PathBase { get; set; }
|
||||
string Protocol { get; set; }
|
||||
string QueryString { get; set; }
|
||||
string RawTarget { get; set; }
|
||||
string Scheme { get; set; }
|
||||
}
|
||||
public partial interface IHttpRequestIdentifierFeature
|
||||
{
|
||||
string TraceIdentifier { get; set; }
|
||||
}
|
||||
public partial interface IHttpRequestLifetimeFeature
|
||||
{
|
||||
System.Threading.CancellationToken RequestAborted { get; set; }
|
||||
void Abort();
|
||||
}
|
||||
public partial interface IHttpResponseFeature
|
||||
{
|
||||
System.IO.Stream Body { get; set; }
|
||||
bool HasStarted { get; }
|
||||
Microsoft.AspNetCore.Http.IHeaderDictionary Headers { get; set; }
|
||||
string ReasonPhrase { get; set; }
|
||||
int StatusCode { get; set; }
|
||||
void OnCompleted(System.Func<object, System.Threading.Tasks.Task> callback, object state);
|
||||
void OnStarting(System.Func<object, System.Threading.Tasks.Task> callback, object state);
|
||||
}
|
||||
public partial interface IHttpSendFileFeature
|
||||
{
|
||||
System.Threading.Tasks.Task SendFileAsync(string path, long offset, System.Nullable<long> count, System.Threading.CancellationToken cancellation);
|
||||
}
|
||||
public partial interface IHttpUpgradeFeature
|
||||
{
|
||||
bool IsUpgradableRequest { get; }
|
||||
System.Threading.Tasks.Task<System.IO.Stream> UpgradeAsync();
|
||||
}
|
||||
public partial interface IHttpWebSocketFeature
|
||||
{
|
||||
bool IsWebSocketRequest { get; }
|
||||
System.Threading.Tasks.Task<System.Net.WebSockets.WebSocket> AcceptAsync(Microsoft.AspNetCore.Http.WebSocketAcceptContext context);
|
||||
}
|
||||
public partial interface IItemsFeature
|
||||
{
|
||||
System.Collections.Generic.IDictionary<object, object> Items { get; set; }
|
||||
}
|
||||
public partial interface IQueryFeature
|
||||
{
|
||||
Microsoft.AspNetCore.Http.IQueryCollection Query { get; set; }
|
||||
}
|
||||
public partial interface IRequestCookiesFeature
|
||||
{
|
||||
Microsoft.AspNetCore.Http.IRequestCookieCollection Cookies { get; set; }
|
||||
}
|
||||
public partial interface IResponseCookiesFeature
|
||||
{
|
||||
Microsoft.AspNetCore.Http.IResponseCookies Cookies { get; }
|
||||
}
|
||||
public partial interface IServiceProvidersFeature
|
||||
{
|
||||
System.IServiceProvider RequestServices { get; set; }
|
||||
}
|
||||
public partial interface ISessionFeature
|
||||
{
|
||||
Microsoft.AspNetCore.Http.ISession Session { get; set; }
|
||||
}
|
||||
public partial interface ITlsConnectionFeature
|
||||
{
|
||||
System.Security.Cryptography.X509Certificates.X509Certificate2 ClientCertificate { get; set; }
|
||||
System.Threading.Tasks.Task<System.Security.Cryptography.X509Certificates.X509Certificate2> GetClientCertificateAsync(System.Threading.CancellationToken cancellationToken);
|
||||
}
|
||||
public partial interface ITlsTokenBindingFeature
|
||||
{
|
||||
byte[] GetProvidedTokenBindingId();
|
||||
byte[] GetReferredTokenBindingId();
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Features.Authentication
|
||||
{
|
||||
public partial class AuthenticateContext
|
||||
{
|
||||
public AuthenticateContext(string authenticationScheme) { }
|
||||
public bool Accepted { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string AuthenticationScheme { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IDictionary<string, object> Description { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Exception Error { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Security.Claims.ClaimsPrincipal Principal { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IDictionary<string, string> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public virtual void Authenticated(System.Security.Claims.ClaimsPrincipal principal, System.Collections.Generic.IDictionary<string, string> properties, System.Collections.Generic.IDictionary<string, object> description) { }
|
||||
public virtual void Failed(System.Exception error) { }
|
||||
public virtual void NotAuthenticated() { }
|
||||
}
|
||||
public enum ChallengeBehavior
|
||||
{
|
||||
Automatic = 0,
|
||||
Forbidden = 2,
|
||||
Unauthorized = 1,
|
||||
}
|
||||
public partial class ChallengeContext
|
||||
{
|
||||
public ChallengeContext(string authenticationScheme) { }
|
||||
public ChallengeContext(string authenticationScheme, System.Collections.Generic.IDictionary<string, string> properties, Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior behavior) { }
|
||||
public bool Accepted { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string AuthenticationScheme { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior Behavior { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IDictionary<string, string> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public void Accept() { }
|
||||
}
|
||||
public partial class DescribeSchemesContext
|
||||
{
|
||||
public DescribeSchemesContext() { }
|
||||
public System.Collections.Generic.IEnumerable<System.Collections.Generic.IDictionary<string, object>> Results { get { throw null; } }
|
||||
public void Accept(System.Collections.Generic.IDictionary<string, object> description) { }
|
||||
}
|
||||
public partial interface IAuthenticationHandler
|
||||
{
|
||||
System.Threading.Tasks.Task AuthenticateAsync(Microsoft.AspNetCore.Http.Features.Authentication.AuthenticateContext context);
|
||||
System.Threading.Tasks.Task ChallengeAsync(Microsoft.AspNetCore.Http.Features.Authentication.ChallengeContext context);
|
||||
void GetDescriptions(Microsoft.AspNetCore.Http.Features.Authentication.DescribeSchemesContext context);
|
||||
System.Threading.Tasks.Task SignInAsync(Microsoft.AspNetCore.Http.Features.Authentication.SignInContext context);
|
||||
System.Threading.Tasks.Task SignOutAsync(Microsoft.AspNetCore.Http.Features.Authentication.SignOutContext context);
|
||||
}
|
||||
public partial interface IHttpAuthenticationFeature
|
||||
{
|
||||
Microsoft.AspNetCore.Http.Features.Authentication.IAuthenticationHandler Handler { get; set; }
|
||||
System.Security.Claims.ClaimsPrincipal User { get; set; }
|
||||
}
|
||||
public partial class SignInContext
|
||||
{
|
||||
public SignInContext(string authenticationScheme, System.Security.Claims.ClaimsPrincipal principal, System.Collections.Generic.IDictionary<string, string> properties) { }
|
||||
public bool Accepted { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string AuthenticationScheme { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Security.Claims.ClaimsPrincipal Principal { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IDictionary<string, string> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public void Accept() { }
|
||||
}
|
||||
public partial class SignOutContext
|
||||
{
|
||||
public SignOutContext(string authenticationScheme, System.Collections.Generic.IDictionary<string, string> properties) { }
|
||||
public bool Accepted { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string AuthenticationScheme { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IDictionary<string, string> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public void Accept() { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,430 @@
|
|||
namespace Microsoft.AspNetCore.Builder.Internal
|
||||
{
|
||||
public partial class ApplicationBuilder : Microsoft.AspNetCore.Builder.IApplicationBuilder
|
||||
{
|
||||
public ApplicationBuilder(System.IServiceProvider serviceProvider) { }
|
||||
public ApplicationBuilder(System.IServiceProvider serviceProvider, object server) { }
|
||||
public System.IServiceProvider ApplicationServices { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IDictionary<string, object> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.Features.IFeatureCollection ServerFeatures { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.RequestDelegate Build() { throw null; }
|
||||
public Microsoft.AspNetCore.Builder.IApplicationBuilder New() { throw null; }
|
||||
public Microsoft.AspNetCore.Builder.IApplicationBuilder Use(System.Func<Microsoft.AspNetCore.Http.RequestDelegate, Microsoft.AspNetCore.Http.RequestDelegate> middleware) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http
|
||||
{
|
||||
public partial class DefaultHttpContext : Microsoft.AspNetCore.Http.HttpContext
|
||||
{
|
||||
public DefaultHttpContext() { }
|
||||
public DefaultHttpContext(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public override Microsoft.AspNetCore.Http.Authentication.AuthenticationManager Authentication { get { throw null; } }
|
||||
public override Microsoft.AspNetCore.Http.ConnectionInfo Connection { get { throw null; } }
|
||||
public override Microsoft.AspNetCore.Http.Features.IFeatureCollection Features { get { throw null; } }
|
||||
public override System.Collections.Generic.IDictionary<object, object> Items { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.HttpRequest Request { get { throw null; } }
|
||||
public override System.Threading.CancellationToken RequestAborted { get { throw null; } set { } }
|
||||
public override System.IServiceProvider RequestServices { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.HttpResponse Response { get { throw null; } }
|
||||
public override Microsoft.AspNetCore.Http.ISession Session { get { throw null; } set { } }
|
||||
public override string TraceIdentifier { get { throw null; } set { } }
|
||||
public override System.Security.Claims.ClaimsPrincipal User { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.WebSocketManager WebSockets { get { throw null; } }
|
||||
public override void Abort() { }
|
||||
public virtual void Initialize(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
protected virtual Microsoft.AspNetCore.Http.Authentication.AuthenticationManager InitializeAuthenticationManager() { throw null; }
|
||||
protected virtual Microsoft.AspNetCore.Http.ConnectionInfo InitializeConnectionInfo() { throw null; }
|
||||
protected virtual Microsoft.AspNetCore.Http.HttpRequest InitializeHttpRequest() { throw null; }
|
||||
protected virtual Microsoft.AspNetCore.Http.HttpResponse InitializeHttpResponse() { throw null; }
|
||||
protected virtual Microsoft.AspNetCore.Http.WebSocketManager InitializeWebSocketManager() { throw null; }
|
||||
public virtual void Uninitialize() { }
|
||||
protected virtual void UninitializeAuthenticationManager(Microsoft.AspNetCore.Http.Authentication.AuthenticationManager instance) { }
|
||||
protected virtual void UninitializeConnectionInfo(Microsoft.AspNetCore.Http.ConnectionInfo instance) { }
|
||||
protected virtual void UninitializeHttpRequest(Microsoft.AspNetCore.Http.HttpRequest instance) { }
|
||||
protected virtual void UninitializeHttpResponse(Microsoft.AspNetCore.Http.HttpResponse instance) { }
|
||||
protected virtual void UninitializeWebSocketManager(Microsoft.AspNetCore.Http.WebSocketManager instance) { }
|
||||
}
|
||||
public partial class FormCollection : Microsoft.AspNetCore.Http.IFormCollection, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerable
|
||||
{
|
||||
public static readonly Microsoft.AspNetCore.Http.FormCollection Empty;
|
||||
public FormCollection(System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> fields, Microsoft.AspNetCore.Http.IFormFileCollection files=null) { }
|
||||
public int Count { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.IFormFileCollection Files { get { throw null; } }
|
||||
public Microsoft.Extensions.Primitives.StringValues this[string key] { get { throw null; } }
|
||||
public System.Collections.Generic.ICollection<string> Keys { get { throw null; } }
|
||||
public bool ContainsKey(string key) { throw null; }
|
||||
public Microsoft.AspNetCore.Http.FormCollection.Enumerator GetEnumerator() { throw null; }
|
||||
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,Microsoft.Extensions.Primitives.StringValues>>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public bool TryGetValue(string key, out Microsoft.Extensions.Primitives.StringValues value) { value = default(Microsoft.Extensions.Primitives.StringValues); throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues> Current { get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public bool MoveNext() { throw null; }
|
||||
void System.Collections.IEnumerator.Reset() { }
|
||||
}
|
||||
}
|
||||
public partial class HeaderDictionary : Microsoft.AspNetCore.Http.IHeaderDictionary, System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.Generic.IDictionary<string, Microsoft.Extensions.Primitives.StringValues>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerable
|
||||
{
|
||||
public HeaderDictionary() { }
|
||||
public HeaderDictionary(System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> store) { }
|
||||
public HeaderDictionary(int capacity) { }
|
||||
public int Count { get { throw null; } }
|
||||
public bool IsReadOnly { get { throw null; } }
|
||||
public Microsoft.Extensions.Primitives.StringValues this[string key] { get { throw null; } set { } }
|
||||
public System.Collections.Generic.ICollection<string> Keys { get { throw null; } }
|
||||
Microsoft.Extensions.Primitives.StringValues System.Collections.Generic.IDictionary<System.String,Microsoft.Extensions.Primitives.StringValues>.this[string key] { get { throw null; } set { } }
|
||||
public System.Collections.Generic.ICollection<Microsoft.Extensions.Primitives.StringValues> Values { get { throw null; } }
|
||||
public void Add(System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues> item) { }
|
||||
public void Add(string key, Microsoft.Extensions.Primitives.StringValues value) { }
|
||||
public void Clear() { }
|
||||
public bool Contains(System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues> item) { throw null; }
|
||||
public bool ContainsKey(string key) { throw null; }
|
||||
public void CopyTo(System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>[] array, int arrayIndex) { }
|
||||
public Microsoft.AspNetCore.Http.HeaderDictionary.Enumerator GetEnumerator() { throw null; }
|
||||
public bool Remove(System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues> item) { throw null; }
|
||||
public bool Remove(string key) { throw null; }
|
||||
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,Microsoft.Extensions.Primitives.StringValues>>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public bool TryGetValue(string key, out Microsoft.Extensions.Primitives.StringValues value) { value = default(Microsoft.Extensions.Primitives.StringValues); throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues> Current { get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public bool MoveNext() { throw null; }
|
||||
void System.Collections.IEnumerator.Reset() { }
|
||||
}
|
||||
}
|
||||
public partial class HttpContextAccessor : Microsoft.AspNetCore.Http.IHttpContextAccessor
|
||||
{
|
||||
public HttpContextAccessor() { }
|
||||
public Microsoft.AspNetCore.Http.HttpContext HttpContext { get { throw null; } set { } }
|
||||
}
|
||||
public partial class HttpContextFactory : Microsoft.AspNetCore.Http.IHttpContextFactory
|
||||
{
|
||||
public HttpContextFactory(Microsoft.Extensions.ObjectPool.ObjectPoolProvider poolProvider, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Http.Features.FormOptions> formOptions) { }
|
||||
public HttpContextFactory(Microsoft.Extensions.ObjectPool.ObjectPoolProvider poolProvider, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Http.Features.FormOptions> formOptions, Microsoft.AspNetCore.Http.IHttpContextAccessor httpContextAccessor) { }
|
||||
public Microsoft.AspNetCore.Http.HttpContext Create(Microsoft.AspNetCore.Http.Features.IFeatureCollection featureCollection) { throw null; }
|
||||
public void Dispose(Microsoft.AspNetCore.Http.HttpContext httpContext) { }
|
||||
}
|
||||
public static partial class RequestFormReaderExtensions
|
||||
{
|
||||
public static System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.IFormCollection> ReadFormAsync(this Microsoft.AspNetCore.Http.HttpRequest request, Microsoft.AspNetCore.Http.Features.FormOptions options, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Authentication.Internal
|
||||
{
|
||||
public partial class DefaultAuthenticationManager : Microsoft.AspNetCore.Http.Authentication.AuthenticationManager
|
||||
{
|
||||
public DefaultAuthenticationManager(Microsoft.AspNetCore.Http.HttpContext context) { }
|
||||
public override Microsoft.AspNetCore.Http.HttpContext HttpContext { get { throw null; } }
|
||||
public override System.Threading.Tasks.Task AuthenticateAsync(Microsoft.AspNetCore.Http.Features.Authentication.AuthenticateContext context) { throw null; }
|
||||
public override System.Threading.Tasks.Task ChallengeAsync(string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties, Microsoft.AspNetCore.Http.Features.Authentication.ChallengeBehavior behavior) { throw null; }
|
||||
public override System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.Authentication.AuthenticateInfo> GetAuthenticateInfoAsync(string authenticationScheme) { throw null; }
|
||||
public override System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription> GetAuthenticationSchemes() { throw null; }
|
||||
public virtual void Initialize(Microsoft.AspNetCore.Http.HttpContext context) { }
|
||||
public override System.Threading.Tasks.Task SignInAsync(string authenticationScheme, System.Security.Claims.ClaimsPrincipal principal, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties) { throw null; }
|
||||
public override System.Threading.Tasks.Task SignOutAsync(string authenticationScheme, Microsoft.AspNetCore.Http.Authentication.AuthenticationProperties properties) { throw null; }
|
||||
public virtual void Uninitialize() { }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Features
|
||||
{
|
||||
public partial class DefaultSessionFeature : Microsoft.AspNetCore.Http.Features.ISessionFeature
|
||||
{
|
||||
public DefaultSessionFeature() { }
|
||||
public Microsoft.AspNetCore.Http.ISession Session { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class FormFeature : Microsoft.AspNetCore.Http.Features.IFormFeature
|
||||
{
|
||||
public FormFeature(Microsoft.AspNetCore.Http.HttpRequest request) { }
|
||||
public FormFeature(Microsoft.AspNetCore.Http.HttpRequest request, Microsoft.AspNetCore.Http.Features.FormOptions options) { }
|
||||
public FormFeature(Microsoft.AspNetCore.Http.IFormCollection form) { }
|
||||
public Microsoft.AspNetCore.Http.IFormCollection Form { get { throw null; } set { } }
|
||||
public bool HasFormContentType { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.IFormCollection ReadForm() { throw null; }
|
||||
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.IFormCollection> ReadFormAsync() { throw null; }
|
||||
public System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.IFormCollection> ReadFormAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
}
|
||||
public partial class FormOptions
|
||||
{
|
||||
public const int DefaultBufferBodyLengthLimit = 134217728;
|
||||
public const int DefaultMemoryBufferThreshold = 65536;
|
||||
public const long DefaultMultipartBodyLengthLimit = (long)134217728;
|
||||
public const int DefaultMultipartBoundaryLengthLimit = 128;
|
||||
public FormOptions() { }
|
||||
public bool BufferBody { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public long BufferBodyLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int KeyLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int MemoryBufferThreshold { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public long MultipartBodyLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int MultipartBoundaryLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int MultipartHeadersCountLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int MultipartHeadersLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int ValueCountLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int ValueLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class HttpConnectionFeature : Microsoft.AspNetCore.Http.Features.IHttpConnectionFeature
|
||||
{
|
||||
public HttpConnectionFeature() { }
|
||||
public string ConnectionId { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Net.IPAddress LocalIpAddress { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int LocalPort { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Net.IPAddress RemoteIpAddress { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int RemotePort { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class HttpRequestFeature : Microsoft.AspNetCore.Http.Features.IHttpRequestFeature
|
||||
{
|
||||
public HttpRequestFeature() { }
|
||||
public System.IO.Stream Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Http.IHeaderDictionary Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Method { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Path { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string PathBase { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Protocol { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string QueryString { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string RawTarget { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Scheme { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class HttpRequestIdentifierFeature : Microsoft.AspNetCore.Http.Features.IHttpRequestIdentifierFeature
|
||||
{
|
||||
public HttpRequestIdentifierFeature() { }
|
||||
public string TraceIdentifier { get { throw null; } set { } }
|
||||
}
|
||||
public partial class HttpRequestLifetimeFeature : Microsoft.AspNetCore.Http.Features.IHttpRequestLifetimeFeature
|
||||
{
|
||||
public HttpRequestLifetimeFeature() { }
|
||||
public System.Threading.CancellationToken RequestAborted { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public void Abort() { }
|
||||
}
|
||||
public partial class HttpResponseFeature : Microsoft.AspNetCore.Http.Features.IHttpResponseFeature
|
||||
{
|
||||
public HttpResponseFeature() { }
|
||||
public System.IO.Stream Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public virtual bool HasStarted { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.IHeaderDictionary Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string ReasonPhrase { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int StatusCode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public virtual void OnCompleted(System.Func<object, System.Threading.Tasks.Task> callback, object state) { }
|
||||
public virtual void OnStarting(System.Func<object, System.Threading.Tasks.Task> callback, object state) { }
|
||||
}
|
||||
public partial class ItemsFeature : Microsoft.AspNetCore.Http.Features.IItemsFeature
|
||||
{
|
||||
public ItemsFeature() { }
|
||||
public System.Collections.Generic.IDictionary<object, object> Items { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class QueryFeature : Microsoft.AspNetCore.Http.Features.IQueryFeature
|
||||
{
|
||||
public QueryFeature(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public QueryFeature(Microsoft.AspNetCore.Http.IQueryCollection query) { }
|
||||
public Microsoft.AspNetCore.Http.IQueryCollection Query { get { throw null; } set { } }
|
||||
}
|
||||
public partial class RequestCookiesFeature : Microsoft.AspNetCore.Http.Features.IRequestCookiesFeature
|
||||
{
|
||||
public RequestCookiesFeature(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public RequestCookiesFeature(Microsoft.AspNetCore.Http.IRequestCookieCollection cookies) { }
|
||||
public Microsoft.AspNetCore.Http.IRequestCookieCollection Cookies { get { throw null; } set { } }
|
||||
}
|
||||
public partial class ResponseCookiesFeature : Microsoft.AspNetCore.Http.Features.IResponseCookiesFeature
|
||||
{
|
||||
public ResponseCookiesFeature(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public ResponseCookiesFeature(Microsoft.AspNetCore.Http.Features.IFeatureCollection features, Microsoft.Extensions.ObjectPool.ObjectPool<System.Text.StringBuilder> builderPool) { }
|
||||
public Microsoft.AspNetCore.Http.IResponseCookies Cookies { get { throw null; } }
|
||||
}
|
||||
public partial class ServiceProvidersFeature : Microsoft.AspNetCore.Http.Features.IServiceProvidersFeature
|
||||
{
|
||||
public ServiceProvidersFeature() { }
|
||||
public System.IServiceProvider RequestServices { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class TlsConnectionFeature : Microsoft.AspNetCore.Http.Features.ITlsConnectionFeature
|
||||
{
|
||||
public TlsConnectionFeature() { }
|
||||
public System.Security.Cryptography.X509Certificates.X509Certificate2 ClientCertificate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Threading.Tasks.Task<System.Security.Cryptography.X509Certificates.X509Certificate2> GetClientCertificateAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Features.Authentication
|
||||
{
|
||||
public partial class HttpAuthenticationFeature : Microsoft.AspNetCore.Http.Features.Authentication.IHttpAuthenticationFeature
|
||||
{
|
||||
public HttpAuthenticationFeature() { }
|
||||
public Microsoft.AspNetCore.Http.Features.Authentication.IAuthenticationHandler Handler { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Security.Claims.ClaimsPrincipal User { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Http.Internal
|
||||
{
|
||||
public static partial class BufferingHelper
|
||||
{
|
||||
public static string TempDirectory { get { throw null; } }
|
||||
public static Microsoft.AspNetCore.Http.HttpRequest EnableRewind(this Microsoft.AspNetCore.Http.HttpRequest request, int bufferThreshold=30720, System.Nullable<long> bufferLimit=null) { throw null; }
|
||||
public static Microsoft.AspNetCore.WebUtilities.MultipartSection EnableRewind(this Microsoft.AspNetCore.WebUtilities.MultipartSection section, System.Action<System.IDisposable> registerForDispose, int bufferThreshold=30720, System.Nullable<long> bufferLimit=null) { throw null; }
|
||||
}
|
||||
public partial class DefaultConnectionInfo : Microsoft.AspNetCore.Http.ConnectionInfo
|
||||
{
|
||||
public DefaultConnectionInfo(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public override System.Security.Cryptography.X509Certificates.X509Certificate2 ClientCertificate { get { throw null; } set { } }
|
||||
public override System.Net.IPAddress LocalIpAddress { get { throw null; } set { } }
|
||||
public override int LocalPort { get { throw null; } set { } }
|
||||
public override System.Net.IPAddress RemoteIpAddress { get { throw null; } set { } }
|
||||
public override int RemotePort { get { throw null; } set { } }
|
||||
public override System.Threading.Tasks.Task<System.Security.Cryptography.X509Certificates.X509Certificate2> GetClientCertificateAsync(System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
public virtual void Initialize(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public virtual void Uninitialize() { }
|
||||
}
|
||||
public partial class DefaultHttpRequest : Microsoft.AspNetCore.Http.HttpRequest
|
||||
{
|
||||
public DefaultHttpRequest(Microsoft.AspNetCore.Http.HttpContext context) { }
|
||||
public override System.IO.Stream Body { get { throw null; } set { } }
|
||||
public override System.Nullable<long> ContentLength { get { throw null; } set { } }
|
||||
public override string ContentType { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.IRequestCookieCollection Cookies { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.IFormCollection Form { get { throw null; } set { } }
|
||||
public override bool HasFormContentType { get { throw null; } }
|
||||
public override Microsoft.AspNetCore.Http.IHeaderDictionary Headers { get { throw null; } }
|
||||
public override Microsoft.AspNetCore.Http.HostString Host { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.HttpContext HttpContext { get { throw null; } }
|
||||
public override bool IsHttps { get { throw null; } set { } }
|
||||
public override string Method { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.PathString Path { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.PathString PathBase { get { throw null; } set { } }
|
||||
public override string Protocol { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.IQueryCollection Query { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.QueryString QueryString { get { throw null; } set { } }
|
||||
public override string Scheme { get { throw null; } set { } }
|
||||
public virtual void Initialize(Microsoft.AspNetCore.Http.HttpContext context) { }
|
||||
public override System.Threading.Tasks.Task<Microsoft.AspNetCore.Http.IFormCollection> ReadFormAsync(System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
public virtual void Uninitialize() { }
|
||||
}
|
||||
public partial class DefaultHttpResponse : Microsoft.AspNetCore.Http.HttpResponse
|
||||
{
|
||||
public DefaultHttpResponse(Microsoft.AspNetCore.Http.HttpContext context) { }
|
||||
public override System.IO.Stream Body { get { throw null; } set { } }
|
||||
public override System.Nullable<long> ContentLength { get { throw null; } set { } }
|
||||
public override string ContentType { get { throw null; } set { } }
|
||||
public override Microsoft.AspNetCore.Http.IResponseCookies Cookies { get { throw null; } }
|
||||
public override bool HasStarted { get { throw null; } }
|
||||
public override Microsoft.AspNetCore.Http.IHeaderDictionary Headers { get { throw null; } }
|
||||
public override Microsoft.AspNetCore.Http.HttpContext HttpContext { get { throw null; } }
|
||||
public override int StatusCode { get { throw null; } set { } }
|
||||
public virtual void Initialize(Microsoft.AspNetCore.Http.HttpContext context) { }
|
||||
public override void OnCompleted(System.Func<object, System.Threading.Tasks.Task> callback, object state) { }
|
||||
public override void OnStarting(System.Func<object, System.Threading.Tasks.Task> callback, object state) { }
|
||||
public override void Redirect(string location, bool permanent) { }
|
||||
public virtual void Uninitialize() { }
|
||||
}
|
||||
public partial class DefaultWebSocketManager : Microsoft.AspNetCore.Http.WebSocketManager
|
||||
{
|
||||
public DefaultWebSocketManager(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public override bool IsWebSocketRequest { get { throw null; } }
|
||||
public override System.Collections.Generic.IList<string> WebSocketRequestedProtocols { get { throw null; } }
|
||||
public override System.Threading.Tasks.Task<System.Net.WebSockets.WebSocket> AcceptWebSocketAsync(string subProtocol) { throw null; }
|
||||
public virtual void Initialize(Microsoft.AspNetCore.Http.Features.IFeatureCollection features) { }
|
||||
public virtual void Uninitialize() { }
|
||||
}
|
||||
public partial class FormFile : Microsoft.AspNetCore.Http.IFormFile
|
||||
{
|
||||
public FormFile(System.IO.Stream baseStream, long baseStreamOffset, long length, string name, string fileName) { }
|
||||
public string ContentDisposition { get { throw null; } set { } }
|
||||
public string ContentType { get { throw null; } set { } }
|
||||
public string FileName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.IHeaderDictionary Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public long Length { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public void CopyTo(System.IO.Stream target) { }
|
||||
public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream target, System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
public System.IO.Stream OpenReadStream() { throw null; }
|
||||
}
|
||||
public partial class FormFileCollection : System.Collections.Generic.List<Microsoft.AspNetCore.Http.IFormFile>, Microsoft.AspNetCore.Http.IFormFileCollection, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.Generic.IReadOnlyCollection<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile>, System.Collections.IEnumerable
|
||||
{
|
||||
public FormFileCollection() { }
|
||||
public Microsoft.AspNetCore.Http.IFormFile this[string name] { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.IFormFile GetFile(string name) { throw null; }
|
||||
public System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Http.IFormFile> GetFiles(string name) { throw null; }
|
||||
}
|
||||
public partial class ItemsDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<object, object>>, System.Collections.Generic.IDictionary<object, object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<object, object>>, System.Collections.IEnumerable
|
||||
{
|
||||
public ItemsDictionary() { }
|
||||
public ItemsDictionary(System.Collections.Generic.IDictionary<object, object> items) { }
|
||||
public System.Collections.Generic.IDictionary<object, object> Items { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
int System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.Count { get { throw null; } }
|
||||
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.IsReadOnly { get { throw null; } }
|
||||
object System.Collections.Generic.IDictionary<System.Object,System.Object>.this[object key] { get { throw null; } set { } }
|
||||
System.Collections.Generic.ICollection<object> System.Collections.Generic.IDictionary<System.Object,System.Object>.Keys { get { throw null; } }
|
||||
System.Collections.Generic.ICollection<object> System.Collections.Generic.IDictionary<System.Object,System.Object>.Values { get { throw null; } }
|
||||
void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.Add(System.Collections.Generic.KeyValuePair<object, object> item) { }
|
||||
void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.Clear() { }
|
||||
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.Contains(System.Collections.Generic.KeyValuePair<object, object> item) { throw null; }
|
||||
void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.CopyTo(System.Collections.Generic.KeyValuePair<object, object>[] array, int arrayIndex) { }
|
||||
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.Remove(System.Collections.Generic.KeyValuePair<object, object> item) { throw null; }
|
||||
void System.Collections.Generic.IDictionary<System.Object,System.Object>.Add(object key, object value) { }
|
||||
bool System.Collections.Generic.IDictionary<System.Object,System.Object>.ContainsKey(object key) { throw null; }
|
||||
bool System.Collections.Generic.IDictionary<System.Object,System.Object>.Remove(object key) { throw null; }
|
||||
bool System.Collections.Generic.IDictionary<System.Object,System.Object>.TryGetValue(object key, out object value) { value = default(object); throw null; }
|
||||
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<object, object>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
}
|
||||
public partial class QueryCollection : Microsoft.AspNetCore.Http.IQueryCollection, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerable
|
||||
{
|
||||
public static readonly Microsoft.AspNetCore.Http.Internal.QueryCollection Empty;
|
||||
public QueryCollection() { }
|
||||
public QueryCollection(Microsoft.AspNetCore.Http.Internal.QueryCollection store) { }
|
||||
public QueryCollection(System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> store) { }
|
||||
public QueryCollection(int capacity) { }
|
||||
public int Count { get { throw null; } }
|
||||
public Microsoft.Extensions.Primitives.StringValues this[string key] { get { throw null; } }
|
||||
public System.Collections.Generic.ICollection<string> Keys { get { throw null; } }
|
||||
public bool ContainsKey(string key) { throw null; }
|
||||
public Microsoft.AspNetCore.Http.Internal.QueryCollection.Enumerator GetEnumerator() { throw null; }
|
||||
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,Microsoft.Extensions.Primitives.StringValues>>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public bool TryGetValue(string key, out Microsoft.Extensions.Primitives.StringValues value) { value = default(Microsoft.Extensions.Primitives.StringValues); throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues>>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public System.Collections.Generic.KeyValuePair<string, Microsoft.Extensions.Primitives.StringValues> Current { get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public bool MoveNext() { throw null; }
|
||||
void System.Collections.IEnumerator.Reset() { }
|
||||
}
|
||||
}
|
||||
public partial class RequestCookieCollection : Microsoft.AspNetCore.Http.IRequestCookieCollection, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>, System.Collections.IEnumerable
|
||||
{
|
||||
public static readonly Microsoft.AspNetCore.Http.Internal.RequestCookieCollection Empty;
|
||||
public RequestCookieCollection() { }
|
||||
public RequestCookieCollection(System.Collections.Generic.Dictionary<string, string> store) { }
|
||||
public RequestCookieCollection(int capacity) { }
|
||||
public int Count { get { throw null; } }
|
||||
public string this[string key] { get { throw null; } }
|
||||
public System.Collections.Generic.ICollection<string> Keys { get { throw null; } }
|
||||
public bool ContainsKey(string key) { throw null; }
|
||||
public Microsoft.AspNetCore.Http.Internal.RequestCookieCollection.Enumerator GetEnumerator() { throw null; }
|
||||
public static Microsoft.AspNetCore.Http.Internal.RequestCookieCollection Parse(System.Collections.Generic.IList<string> values) { throw null; }
|
||||
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, string>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.String>>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public bool TryGetValue(string key, out string value) { value = default(string); throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, string>>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public System.Collections.Generic.KeyValuePair<string, string> Current { get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public bool MoveNext() { throw null; }
|
||||
public void Reset() { }
|
||||
}
|
||||
}
|
||||
public partial class ResponseCookies : Microsoft.AspNetCore.Http.IResponseCookies
|
||||
{
|
||||
public ResponseCookies(Microsoft.AspNetCore.Http.IHeaderDictionary headers, Microsoft.Extensions.ObjectPool.ObjectPool<System.Text.StringBuilder> builderPool) { }
|
||||
public void Append(string key, string value) { }
|
||||
public void Append(string key, string value, Microsoft.AspNetCore.Http.CookieOptions options) { }
|
||||
public void Delete(string key) { }
|
||||
public void Delete(string key, Microsoft.AspNetCore.Http.CookieOptions options) { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,64 @@
|
|||
namespace Microsoft.AspNetCore.Builder
|
||||
{
|
||||
public static partial class ForwardedHeadersExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseForwardedHeaders(this Microsoft.AspNetCore.Builder.IApplicationBuilder builder) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseForwardedHeaders(this Microsoft.AspNetCore.Builder.IApplicationBuilder builder, Microsoft.AspNetCore.Builder.ForwardedHeadersOptions options) { throw null; }
|
||||
}
|
||||
public partial class ForwardedHeadersOptions
|
||||
{
|
||||
public ForwardedHeadersOptions() { }
|
||||
public Microsoft.AspNetCore.HttpOverrides.ForwardedHeaders ForwardedHeaders { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Nullable<int> ForwardLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.HttpOverrides.IPNetwork> KnownNetworks { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IList<System.Net.IPAddress> KnownProxies { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool RequireHeaderSymmetry { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class HttpMethodOverrideExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseHttpMethodOverride(this Microsoft.AspNetCore.Builder.IApplicationBuilder builder) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseHttpMethodOverride(this Microsoft.AspNetCore.Builder.IApplicationBuilder builder, Microsoft.AspNetCore.Builder.HttpMethodOverrideOptions options) { throw null; }
|
||||
}
|
||||
public partial class HttpMethodOverrideOptions
|
||||
{
|
||||
public HttpMethodOverrideOptions() { }
|
||||
public string FormFieldName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.HttpOverrides
|
||||
{
|
||||
[System.FlagsAttribute]
|
||||
public enum ForwardedHeaders
|
||||
{
|
||||
All = 7,
|
||||
None = 0,
|
||||
XForwardedFor = 1,
|
||||
XForwardedHost = 2,
|
||||
XForwardedProto = 4,
|
||||
}
|
||||
public partial class ForwardedHeadersMiddleware
|
||||
{
|
||||
public ForwardedHeadersMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.ForwardedHeadersOptions> options) { }
|
||||
public void ApplyForwarders(Microsoft.AspNetCore.Http.HttpContext context) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class HttpMethodOverrideMiddleware
|
||||
{
|
||||
public HttpMethodOverrideMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.HttpMethodOverrideOptions> options) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class IPNetwork
|
||||
{
|
||||
public IPNetwork(System.Net.IPAddress prefix, int prefixLength) { }
|
||||
public System.Net.IPAddress Prefix { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int PrefixLength { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Contains(System.Net.IPAddress address) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.HttpOverrides.Internal
|
||||
{
|
||||
public static partial class IPEndPointParser
|
||||
{
|
||||
public static bool TryParse(string addressWithPort, out System.Net.IPEndPoint endpoint) { endpoint = default(System.Net.IPEndPoint); throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,104 @@
|
|||
namespace Microsoft.AspNetCore.Routing
|
||||
{
|
||||
public partial interface IRouteConstraint
|
||||
{
|
||||
bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection);
|
||||
}
|
||||
public partial interface IRouteHandler
|
||||
{
|
||||
Microsoft.AspNetCore.Http.RequestDelegate GetRequestHandler(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.RouteData routeData);
|
||||
}
|
||||
public partial interface IRouter
|
||||
{
|
||||
Microsoft.AspNetCore.Routing.VirtualPathData GetVirtualPath(Microsoft.AspNetCore.Routing.VirtualPathContext context);
|
||||
System.Threading.Tasks.Task RouteAsync(Microsoft.AspNetCore.Routing.RouteContext context);
|
||||
}
|
||||
public partial interface IRoutingFeature
|
||||
{
|
||||
Microsoft.AspNetCore.Routing.RouteData RouteData { get; set; }
|
||||
}
|
||||
public partial class RouteContext
|
||||
{
|
||||
public RouteContext(Microsoft.AspNetCore.Http.HttpContext httpContext) { }
|
||||
public Microsoft.AspNetCore.Http.RequestDelegate Handler { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Http.HttpContext HttpContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.RouteData RouteData { get { throw null; } set { } }
|
||||
}
|
||||
public partial class RouteData
|
||||
{
|
||||
public RouteData() { }
|
||||
public RouteData(Microsoft.AspNetCore.Routing.RouteData other) { }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary DataTokens { get { throw null; } }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.IRouter> Routers { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary Values { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.RouteData.RouteDataSnapshot PushState(Microsoft.AspNetCore.Routing.IRouter router, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteValueDictionary dataTokens) { throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct RouteDataSnapshot
|
||||
{
|
||||
public RouteDataSnapshot(Microsoft.AspNetCore.Routing.RouteData routeData, Microsoft.AspNetCore.Routing.RouteValueDictionary dataTokens, System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.IRouter> routers, Microsoft.AspNetCore.Routing.RouteValueDictionary values) { throw null;}
|
||||
public void Restore() { }
|
||||
}
|
||||
}
|
||||
public enum RouteDirection
|
||||
{
|
||||
IncomingRequest = 0,
|
||||
UrlGeneration = 1,
|
||||
}
|
||||
public partial class RouteValueDictionary : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.Generic.IDictionary<string, object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.Generic.IReadOnlyDictionary<string, object>, System.Collections.IEnumerable
|
||||
{
|
||||
public RouteValueDictionary() { }
|
||||
public RouteValueDictionary(object values) { }
|
||||
public System.Collections.Generic.IEqualityComparer<string> Comparer { get { throw null; } }
|
||||
public int Count { get { throw null; } }
|
||||
public object this[string key] { get { throw null; } set { } }
|
||||
public System.Collections.Generic.ICollection<string> Keys { get { throw null; } }
|
||||
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.IsReadOnly { get { throw null; } }
|
||||
System.Collections.Generic.IEnumerable<string> System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object>.Keys { get { throw null; } }
|
||||
System.Collections.Generic.IEnumerable<object> System.Collections.Generic.IReadOnlyDictionary<System.String,System.Object>.Values { get { throw null; } }
|
||||
public System.Collections.Generic.ICollection<object> Values { get { throw null; } }
|
||||
public void Add(string key, object value) { }
|
||||
public void Clear() { }
|
||||
public bool ContainsKey(string key) { throw null; }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary.Enumerator GetEnumerator() { throw null; }
|
||||
public bool Remove(string key) { throw null; }
|
||||
void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Add(System.Collections.Generic.KeyValuePair<string, object> item) { }
|
||||
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Contains(System.Collections.Generic.KeyValuePair<string, object> item) { throw null; }
|
||||
void System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.CopyTo(System.Collections.Generic.KeyValuePair<string, object>[] array, int arrayIndex) { }
|
||||
bool System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.Remove(System.Collections.Generic.KeyValuePair<string, object> item) { throw null; }
|
||||
System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object>> System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String,System.Object>>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public bool TryGetValue(string key, out object value) { value = default(object); throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public Enumerator(Microsoft.AspNetCore.Routing.RouteValueDictionary dictionary) { throw null;}
|
||||
public System.Collections.Generic.KeyValuePair<string, object> Current { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public bool MoveNext() { throw null; }
|
||||
public void Reset() { }
|
||||
}
|
||||
}
|
||||
public static partial class RoutingHttpContextExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Routing.RouteData GetRouteData(this Microsoft.AspNetCore.Http.HttpContext httpContext) { throw null; }
|
||||
public static object GetRouteValue(this Microsoft.AspNetCore.Http.HttpContext httpContext, string key) { throw null; }
|
||||
}
|
||||
public partial class VirtualPathContext
|
||||
{
|
||||
public VirtualPathContext(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.RouteValueDictionary ambientValues, Microsoft.AspNetCore.Routing.RouteValueDictionary values) { }
|
||||
public VirtualPathContext(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.RouteValueDictionary ambientValues, Microsoft.AspNetCore.Routing.RouteValueDictionary values, string routeName) { }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary AmbientValues { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Http.HttpContext HttpContext { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string RouteName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary Values { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class VirtualPathData
|
||||
{
|
||||
public VirtualPathData(Microsoft.AspNetCore.Routing.IRouter router, string virtualPath) { }
|
||||
public VirtualPathData(Microsoft.AspNetCore.Routing.IRouter router, string virtualPath, Microsoft.AspNetCore.Routing.RouteValueDictionary dataTokens) { }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary DataTokens { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.IRouter Router { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string VirtualPath { get { throw null; } set { } }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,493 @@
|
|||
namespace Microsoft.AspNetCore.Builder
|
||||
{
|
||||
public static partial class MapRouteRouteBuilderExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute(this Microsoft.AspNetCore.Routing.IRouteBuilder routeBuilder, string name, string template) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute(this Microsoft.AspNetCore.Routing.IRouteBuilder routeBuilder, string name, string template, object defaults) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute(this Microsoft.AspNetCore.Routing.IRouteBuilder routeBuilder, string name, string template, object defaults, object constraints) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute(this Microsoft.AspNetCore.Routing.IRouteBuilder routeBuilder, string name, string template, object defaults, object constraints, object dataTokens) { throw null; }
|
||||
}
|
||||
public partial class RouterMiddleware
|
||||
{
|
||||
public RouterMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, Microsoft.AspNetCore.Routing.IRouter router) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext httpContext) { throw null; }
|
||||
}
|
||||
public static partial class RoutingBuilderExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseRouter(this Microsoft.AspNetCore.Builder.IApplicationBuilder builder, Microsoft.AspNetCore.Routing.IRouter router) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Routing
|
||||
{
|
||||
public partial class DefaultInlineConstraintResolver : Microsoft.AspNetCore.Routing.IInlineConstraintResolver
|
||||
{
|
||||
public DefaultInlineConstraintResolver(Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Routing.RouteOptions> routeOptions) { }
|
||||
public virtual Microsoft.AspNetCore.Routing.IRouteConstraint ResolveConstraint(string inlineConstraint) { throw null; }
|
||||
}
|
||||
public partial interface IInlineConstraintResolver
|
||||
{
|
||||
Microsoft.AspNetCore.Routing.IRouteConstraint ResolveConstraint(string inlineConstraint);
|
||||
}
|
||||
public partial interface INamedRouter : Microsoft.AspNetCore.Routing.IRouter
|
||||
{
|
||||
string Name { get; }
|
||||
}
|
||||
public static partial class InlineRouteParameterParser
|
||||
{
|
||||
public static Microsoft.AspNetCore.Routing.Template.TemplatePart ParseRouteParameter(string routeParameter) { throw null; }
|
||||
}
|
||||
public partial interface IRouteBuilder
|
||||
{
|
||||
Microsoft.AspNetCore.Builder.IApplicationBuilder ApplicationBuilder { get; }
|
||||
Microsoft.AspNetCore.Routing.IRouter DefaultHandler { get; set; }
|
||||
System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.IRouter> Routes { get; }
|
||||
System.IServiceProvider ServiceProvider { get; }
|
||||
Microsoft.AspNetCore.Routing.IRouter Build();
|
||||
}
|
||||
public partial interface IRouteCollection : Microsoft.AspNetCore.Routing.IRouter
|
||||
{
|
||||
void Add(Microsoft.AspNetCore.Routing.IRouter router);
|
||||
}
|
||||
public static partial class RequestDelegateRouteBuilderExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapDelete(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapDelete(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapGet(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapGet(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapPost(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapPost(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapPut(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapPut(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, Microsoft.AspNetCore.Http.RequestDelegate handler) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapRoute(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string template, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapVerb(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string verb, string template, Microsoft.AspNetCore.Http.RequestDelegate handler) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.IRouteBuilder MapVerb(this Microsoft.AspNetCore.Routing.IRouteBuilder builder, string verb, string template, System.Action<Microsoft.AspNetCore.Builder.IApplicationBuilder> action) { throw null; }
|
||||
}
|
||||
public partial class Route : Microsoft.AspNetCore.Routing.RouteBase
|
||||
{
|
||||
public Route(Microsoft.AspNetCore.Routing.IRouter target, string routeTemplate, Microsoft.AspNetCore.Routing.IInlineConstraintResolver inlineConstraintResolver) : base (default(string), default(string), default(Microsoft.AspNetCore.Routing.IInlineConstraintResolver), default(Microsoft.AspNetCore.Routing.RouteValueDictionary), default(System.Collections.Generic.IDictionary<string, object>), default(Microsoft.AspNetCore.Routing.RouteValueDictionary)) { }
|
||||
public Route(Microsoft.AspNetCore.Routing.IRouter target, string routeTemplate, Microsoft.AspNetCore.Routing.RouteValueDictionary defaults, System.Collections.Generic.IDictionary<string, object> constraints, Microsoft.AspNetCore.Routing.RouteValueDictionary dataTokens, Microsoft.AspNetCore.Routing.IInlineConstraintResolver inlineConstraintResolver) : base (default(string), default(string), default(Microsoft.AspNetCore.Routing.IInlineConstraintResolver), default(Microsoft.AspNetCore.Routing.RouteValueDictionary), default(System.Collections.Generic.IDictionary<string, object>), default(Microsoft.AspNetCore.Routing.RouteValueDictionary)) { }
|
||||
public Route(Microsoft.AspNetCore.Routing.IRouter target, string routeName, string routeTemplate, Microsoft.AspNetCore.Routing.RouteValueDictionary defaults, System.Collections.Generic.IDictionary<string, object> constraints, Microsoft.AspNetCore.Routing.RouteValueDictionary dataTokens, Microsoft.AspNetCore.Routing.IInlineConstraintResolver inlineConstraintResolver) : base (default(string), default(string), default(Microsoft.AspNetCore.Routing.IInlineConstraintResolver), default(Microsoft.AspNetCore.Routing.RouteValueDictionary), default(System.Collections.Generic.IDictionary<string, object>), default(Microsoft.AspNetCore.Routing.RouteValueDictionary)) { }
|
||||
public string RouteTemplate { get { throw null; } }
|
||||
protected override System.Threading.Tasks.Task OnRouteMatched(Microsoft.AspNetCore.Routing.RouteContext context) { throw null; }
|
||||
protected override Microsoft.AspNetCore.Routing.VirtualPathData OnVirtualPathGenerated(Microsoft.AspNetCore.Routing.VirtualPathContext context) { throw null; }
|
||||
}
|
||||
public abstract partial class RouteBase : Microsoft.AspNetCore.Routing.INamedRouter, Microsoft.AspNetCore.Routing.IRouter
|
||||
{
|
||||
public RouteBase(string template, string name, Microsoft.AspNetCore.Routing.IInlineConstraintResolver constraintResolver, Microsoft.AspNetCore.Routing.RouteValueDictionary defaults, System.Collections.Generic.IDictionary<string, object> constraints, Microsoft.AspNetCore.Routing.RouteValueDictionary dataTokens) { }
|
||||
protected virtual Microsoft.AspNetCore.Routing.IInlineConstraintResolver ConstraintResolver { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public virtual System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.Routing.IRouteConstraint> Constraints { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
|
||||
public virtual Microsoft.AspNetCore.Routing.RouteValueDictionary DataTokens { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
|
||||
public virtual Microsoft.AspNetCore.Routing.RouteValueDictionary Defaults { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
|
||||
public virtual string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
|
||||
public virtual Microsoft.AspNetCore.Routing.Template.RouteTemplate ParsedTemplate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]protected set { } }
|
||||
protected static System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.Routing.IRouteConstraint> GetConstraints(Microsoft.AspNetCore.Routing.IInlineConstraintResolver inlineConstraintResolver, Microsoft.AspNetCore.Routing.Template.RouteTemplate parsedTemplate, System.Collections.Generic.IDictionary<string, object> constraints) { throw null; }
|
||||
protected static Microsoft.AspNetCore.Routing.RouteValueDictionary GetDefaults(Microsoft.AspNetCore.Routing.Template.RouteTemplate parsedTemplate, Microsoft.AspNetCore.Routing.RouteValueDictionary defaults) { throw null; }
|
||||
public virtual Microsoft.AspNetCore.Routing.VirtualPathData GetVirtualPath(Microsoft.AspNetCore.Routing.VirtualPathContext context) { throw null; }
|
||||
protected abstract System.Threading.Tasks.Task OnRouteMatched(Microsoft.AspNetCore.Routing.RouteContext context);
|
||||
protected abstract Microsoft.AspNetCore.Routing.VirtualPathData OnVirtualPathGenerated(Microsoft.AspNetCore.Routing.VirtualPathContext context);
|
||||
public virtual System.Threading.Tasks.Task RouteAsync(Microsoft.AspNetCore.Routing.RouteContext context) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
}
|
||||
public partial class RouteBuilder : Microsoft.AspNetCore.Routing.IRouteBuilder
|
||||
{
|
||||
public RouteBuilder(Microsoft.AspNetCore.Builder.IApplicationBuilder applicationBuilder) { }
|
||||
public RouteBuilder(Microsoft.AspNetCore.Builder.IApplicationBuilder applicationBuilder, Microsoft.AspNetCore.Routing.IRouter defaultHandler) { }
|
||||
public Microsoft.AspNetCore.Builder.IApplicationBuilder ApplicationBuilder { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.IRouter DefaultHandler { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.IRouter> Routes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.IServiceProvider ServiceProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.IRouter Build() { throw null; }
|
||||
}
|
||||
public partial class RouteCollection : Microsoft.AspNetCore.Routing.IRouteCollection, Microsoft.AspNetCore.Routing.IRouter
|
||||
{
|
||||
public RouteCollection() { }
|
||||
public int Count { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.IRouter this[int index] { get { throw null; } }
|
||||
public void Add(Microsoft.AspNetCore.Routing.IRouter router) { }
|
||||
public virtual Microsoft.AspNetCore.Routing.VirtualPathData GetVirtualPath(Microsoft.AspNetCore.Routing.VirtualPathContext context) { throw null; }
|
||||
public virtual System.Threading.Tasks.Task RouteAsync(Microsoft.AspNetCore.Routing.RouteContext context) { throw null; }
|
||||
}
|
||||
public partial class RouteConstraintBuilder
|
||||
{
|
||||
public RouteConstraintBuilder(Microsoft.AspNetCore.Routing.IInlineConstraintResolver inlineConstraintResolver, string displayName) { }
|
||||
public void AddConstraint(string key, object value) { }
|
||||
public void AddResolvedConstraint(string key, string constraintText) { }
|
||||
public System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.Routing.IRouteConstraint> Build() { throw null; }
|
||||
public void SetOptional(string key) { }
|
||||
}
|
||||
public static partial class RouteConstraintMatcher
|
||||
{
|
||||
public static bool Match(System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.Routing.IRouteConstraint> constraints, Microsoft.AspNetCore.Routing.RouteValueDictionary routeValues, Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, Microsoft.AspNetCore.Routing.RouteDirection routeDirection, Microsoft.Extensions.Logging.ILogger logger) { throw null; }
|
||||
}
|
||||
public partial class RouteHandler : Microsoft.AspNetCore.Routing.IRouteHandler, Microsoft.AspNetCore.Routing.IRouter
|
||||
{
|
||||
public RouteHandler(Microsoft.AspNetCore.Http.RequestDelegate requestDelegate) { }
|
||||
public Microsoft.AspNetCore.Http.RequestDelegate GetRequestHandler(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.RouteData routeData) { throw null; }
|
||||
public Microsoft.AspNetCore.Routing.VirtualPathData GetVirtualPath(Microsoft.AspNetCore.Routing.VirtualPathContext context) { throw null; }
|
||||
public System.Threading.Tasks.Task RouteAsync(Microsoft.AspNetCore.Routing.RouteContext context) { throw null; }
|
||||
}
|
||||
public partial class RouteOptions
|
||||
{
|
||||
public RouteOptions() { }
|
||||
public bool AppendTrailingSlash { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IDictionary<string, System.Type> ConstraintMap { get { throw null; } set { } }
|
||||
public bool LowercaseUrls { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class RouteValueEqualityComparer : System.Collections.Generic.IEqualityComparer<object>
|
||||
{
|
||||
public RouteValueEqualityComparer() { }
|
||||
public new bool Equals(object x, object y) { throw null; }
|
||||
public int GetHashCode(object obj) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Routing.Constraints
|
||||
{
|
||||
public partial class AlphaRouteConstraint : Microsoft.AspNetCore.Routing.Constraints.RegexRouteConstraint
|
||||
{
|
||||
public AlphaRouteConstraint() : base (default(System.Text.RegularExpressions.Regex)) { }
|
||||
}
|
||||
public partial class BoolRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public BoolRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class CompositeRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public CompositeRouteConstraint(System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.IRouteConstraint> constraints) { }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.IRouteConstraint> Constraints { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class DateTimeRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public DateTimeRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class DecimalRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public DecimalRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class DoubleRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public DoubleRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class FloatRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public FloatRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class GuidRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public GuidRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class HttpMethodRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public HttpMethodRouteConstraint(params string[] allowedMethods) { }
|
||||
public System.Collections.Generic.IList<string> AllowedMethods { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public virtual bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class IntRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public IntRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class LengthRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public LengthRouteConstraint(int length) { }
|
||||
public LengthRouteConstraint(int minLength, int maxLength) { }
|
||||
public int MaxLength { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int MinLength { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class LongRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public LongRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class MaxLengthRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public MaxLengthRouteConstraint(int maxLength) { }
|
||||
public int MaxLength { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class MaxRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public MaxRouteConstraint(long max) { }
|
||||
public long Max { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class MinLengthRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public MinLengthRouteConstraint(int minLength) { }
|
||||
public int MinLength { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class MinRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public MinRouteConstraint(long min) { }
|
||||
public long Min { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class OptionalRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public OptionalRouteConstraint(Microsoft.AspNetCore.Routing.IRouteConstraint innerConstraint) { }
|
||||
public Microsoft.AspNetCore.Routing.IRouteConstraint InnerConstraint { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class RangeRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public RangeRouteConstraint(long min, long max) { }
|
||||
public long Max { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public long Min { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class RegexInlineRouteConstraint : Microsoft.AspNetCore.Routing.Constraints.RegexRouteConstraint
|
||||
{
|
||||
public RegexInlineRouteConstraint(string regexPattern) : base (default(System.Text.RegularExpressions.Regex)) { }
|
||||
}
|
||||
public partial class RegexRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public RegexRouteConstraint(string regexPattern) { }
|
||||
public RegexRouteConstraint(System.Text.RegularExpressions.Regex regex) { }
|
||||
public System.Text.RegularExpressions.Regex Constraint { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
public partial class RequiredRouteConstraint : Microsoft.AspNetCore.Routing.IRouteConstraint
|
||||
{
|
||||
public RequiredRouteConstraint() { }
|
||||
public bool Match(Microsoft.AspNetCore.Http.HttpContext httpContext, Microsoft.AspNetCore.Routing.IRouter route, string routeKey, Microsoft.AspNetCore.Routing.RouteValueDictionary values, Microsoft.AspNetCore.Routing.RouteDirection routeDirection) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Routing.Internal
|
||||
{
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct BufferValue
|
||||
{
|
||||
public BufferValue(string value, bool requiresEncoding) { throw null;}
|
||||
public bool RequiresEncoding { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public partial class LinkGenerationDecisionTree
|
||||
{
|
||||
public LinkGenerationDecisionTree(System.Collections.Generic.IReadOnlyList<Microsoft.AspNetCore.Routing.Tree.OutboundMatch> entries) { }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.Internal.OutboundMatchResult> GetMatches(Microsoft.AspNetCore.Routing.VirtualPathContext context) { throw null; }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct OutboundMatchResult
|
||||
{
|
||||
public OutboundMatchResult(Microsoft.AspNetCore.Routing.Tree.OutboundMatch match, bool isFallbackMatch) { throw null;}
|
||||
public bool IsFallbackMatch { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Tree.OutboundMatch Match { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct PathTokenizer : System.Collections.Generic.IEnumerable<Microsoft.Extensions.Primitives.StringSegment>, System.Collections.Generic.IReadOnlyCollection<Microsoft.Extensions.Primitives.StringSegment>, System.Collections.Generic.IReadOnlyList<Microsoft.Extensions.Primitives.StringSegment>, System.Collections.IEnumerable
|
||||
{
|
||||
public PathTokenizer(Microsoft.AspNetCore.Http.PathString path) { throw null;}
|
||||
public int Count { get { throw null; } }
|
||||
public Microsoft.Extensions.Primitives.StringSegment this[int index] { get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Internal.PathTokenizer.Enumerator GetEnumerator() { throw null; }
|
||||
System.Collections.Generic.IEnumerator<Microsoft.Extensions.Primitives.StringSegment> System.Collections.Generic.IEnumerable<Microsoft.Extensions.Primitives.StringSegment>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<Microsoft.Extensions.Primitives.StringSegment>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public Enumerator(Microsoft.AspNetCore.Routing.Internal.PathTokenizer tokenizer) { throw null;}
|
||||
public Microsoft.Extensions.Primitives.StringSegment Current { get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public bool MoveNext() { throw null; }
|
||||
public void Reset() { }
|
||||
}
|
||||
}
|
||||
public partial class RoutingMarkerService
|
||||
{
|
||||
public RoutingMarkerService() { }
|
||||
}
|
||||
public enum SegmentState
|
||||
{
|
||||
Beginning = 0,
|
||||
Inside = 1,
|
||||
}
|
||||
public static partial class TaskCache
|
||||
{
|
||||
public static readonly System.Threading.Tasks.Task CompletedTask;
|
||||
}
|
||||
public partial class UriBuilderContextPooledObjectPolicy : Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<Microsoft.AspNetCore.Routing.Internal.UriBuildingContext>
|
||||
{
|
||||
public UriBuilderContextPooledObjectPolicy(System.Text.Encodings.Web.UrlEncoder encoder) { }
|
||||
public Microsoft.AspNetCore.Routing.Internal.UriBuildingContext Create() { throw null; }
|
||||
public bool Return(Microsoft.AspNetCore.Routing.Internal.UriBuildingContext obj) { throw null; }
|
||||
}
|
||||
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString(),nq}")]
|
||||
public partial class UriBuildingContext
|
||||
{
|
||||
public UriBuildingContext(System.Text.Encodings.Web.UrlEncoder urlEncoder) { }
|
||||
public Microsoft.AspNetCore.Routing.Internal.SegmentState BufferState { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Internal.SegmentState UriState { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.IO.TextWriter Writer { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Accept(string value) { throw null; }
|
||||
public bool Buffer(string value) { throw null; }
|
||||
public void Clear() { }
|
||||
public void EndSegment() { }
|
||||
public void Remove(string literal) { }
|
||||
public override string ToString() { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Routing.Template
|
||||
{
|
||||
public partial class InlineConstraint
|
||||
{
|
||||
public InlineConstraint(string constraint) { }
|
||||
public string Constraint { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public static partial class RoutePrecedence
|
||||
{
|
||||
public static decimal ComputeInbound(Microsoft.AspNetCore.Routing.Template.RouteTemplate template) { throw null; }
|
||||
public static decimal ComputeOutbound(Microsoft.AspNetCore.Routing.Template.RouteTemplate template) { throw null; }
|
||||
}
|
||||
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString()}")]
|
||||
public partial class RouteTemplate
|
||||
{
|
||||
public RouteTemplate(string template, System.Collections.Generic.List<Microsoft.AspNetCore.Routing.Template.TemplateSegment> segments) { }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.Template.TemplatePart> Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.Template.TemplateSegment> Segments { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string TemplateText { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Template.TemplatePart GetParameter(string name) { throw null; }
|
||||
public Microsoft.AspNetCore.Routing.Template.TemplateSegment GetSegment(int index) { throw null; }
|
||||
}
|
||||
public partial class TemplateBinder
|
||||
{
|
||||
public TemplateBinder(System.Text.Encodings.Web.UrlEncoder urlEncoder, Microsoft.Extensions.ObjectPool.ObjectPool<Microsoft.AspNetCore.Routing.Internal.UriBuildingContext> pool, Microsoft.AspNetCore.Routing.Template.RouteTemplate template, Microsoft.AspNetCore.Routing.RouteValueDictionary defaults) { }
|
||||
public string BindValues(Microsoft.AspNetCore.Routing.RouteValueDictionary acceptedValues) { throw null; }
|
||||
public Microsoft.AspNetCore.Routing.Template.TemplateValuesResult GetValues(Microsoft.AspNetCore.Routing.RouteValueDictionary ambientValues, Microsoft.AspNetCore.Routing.RouteValueDictionary values) { throw null; }
|
||||
public static bool RoutePartsEqual(object a, object b) { throw null; }
|
||||
}
|
||||
public partial class TemplateMatcher
|
||||
{
|
||||
public TemplateMatcher(Microsoft.AspNetCore.Routing.Template.RouteTemplate template, Microsoft.AspNetCore.Routing.RouteValueDictionary defaults) { }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary Defaults { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Template.RouteTemplate Template { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool TryMatch(Microsoft.AspNetCore.Http.PathString path, Microsoft.AspNetCore.Routing.RouteValueDictionary values) { throw null; }
|
||||
}
|
||||
public static partial class TemplateParser
|
||||
{
|
||||
public static Microsoft.AspNetCore.Routing.Template.RouteTemplate Parse(string routeTemplate) { throw null; }
|
||||
}
|
||||
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString()}")]
|
||||
public partial class TemplatePart
|
||||
{
|
||||
public TemplatePart() { }
|
||||
public object DefaultValue { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Template.InlineConstraint> InlineConstraints { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool IsCatchAll { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool IsLiteral { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool IsOptional { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool IsOptionalSeperator { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool IsParameter { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Text { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public static Microsoft.AspNetCore.Routing.Template.TemplatePart CreateLiteral(string text) { throw null; }
|
||||
public static Microsoft.AspNetCore.Routing.Template.TemplatePart CreateParameter(string name, bool isCatchAll, bool isOptional, object defaultValue, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Template.InlineConstraint> inlineConstraints) { throw null; }
|
||||
}
|
||||
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString()}")]
|
||||
public partial class TemplateSegment
|
||||
{
|
||||
public TemplateSegment() { }
|
||||
public bool IsSimple { get { throw null; } }
|
||||
public System.Collections.Generic.List<Microsoft.AspNetCore.Routing.Template.TemplatePart> Parts { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public partial class TemplateValuesResult
|
||||
{
|
||||
public TemplateValuesResult() { }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary AcceptedValues { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary CombinedValues { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Routing.Tree
|
||||
{
|
||||
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString(),nq}")]
|
||||
public partial class InboundMatch
|
||||
{
|
||||
public InboundMatch() { }
|
||||
public Microsoft.AspNetCore.Routing.Tree.InboundRouteEntry Entry { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.Template.TemplateMatcher TemplateMatcher { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class InboundRouteEntry
|
||||
{
|
||||
public InboundRouteEntry() { }
|
||||
public System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.Routing.IRouteConstraint> Constraints { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary Defaults { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.IRouter Handler { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int Order { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public decimal Precedence { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string RouteName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.Template.RouteTemplate RouteTemplate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class OutboundMatch
|
||||
{
|
||||
public OutboundMatch() { }
|
||||
public Microsoft.AspNetCore.Routing.Tree.OutboundRouteEntry Entry { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.Template.TemplateBinder TemplateBinder { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class OutboundRouteEntry
|
||||
{
|
||||
public OutboundRouteEntry() { }
|
||||
public System.Collections.Generic.IDictionary<string, Microsoft.AspNetCore.Routing.IRouteConstraint> Constraints { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary Defaults { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.IRouter Handler { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int Order { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public decimal Precedence { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.RouteValueDictionary RequiredLinkValues { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string RouteName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.Template.RouteTemplate RouteTemplate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class TreeRouteBuilder
|
||||
{
|
||||
public TreeRouteBuilder(Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, System.Text.Encodings.Web.UrlEncoder urlEncoder, Microsoft.Extensions.ObjectPool.ObjectPool<Microsoft.AspNetCore.Routing.Internal.UriBuildingContext> objectPool, Microsoft.AspNetCore.Routing.IInlineConstraintResolver constraintResolver) { }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.Tree.InboundRouteEntry> InboundEntries { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Routing.Tree.OutboundRouteEntry> OutboundEntries { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Tree.TreeRouter Build() { throw null; }
|
||||
public Microsoft.AspNetCore.Routing.Tree.TreeRouter Build(int version) { throw null; }
|
||||
public void Clear() { }
|
||||
public Microsoft.AspNetCore.Routing.Tree.InboundRouteEntry MapInbound(Microsoft.AspNetCore.Routing.IRouter handler, Microsoft.AspNetCore.Routing.Template.RouteTemplate routeTemplate, string routeName, int order) { throw null; }
|
||||
public Microsoft.AspNetCore.Routing.Tree.OutboundRouteEntry MapOutbound(Microsoft.AspNetCore.Routing.IRouter handler, Microsoft.AspNetCore.Routing.Template.RouteTemplate routeTemplate, Microsoft.AspNetCore.Routing.RouteValueDictionary requiredLinkValues, string routeName, int order) { throw null; }
|
||||
}
|
||||
public partial class TreeRouter : Microsoft.AspNetCore.Routing.IRouter
|
||||
{
|
||||
public static readonly string RouteGroupKey;
|
||||
public TreeRouter(Microsoft.AspNetCore.Routing.Tree.UrlMatchingTree[] trees, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Routing.Tree.OutboundRouteEntry> linkGenerationEntries, System.Text.Encodings.Web.UrlEncoder urlEncoder, Microsoft.Extensions.ObjectPool.ObjectPool<Microsoft.AspNetCore.Routing.Internal.UriBuildingContext> objectPool, Microsoft.Extensions.Logging.ILogger routeLogger, Microsoft.Extensions.Logging.ILogger constraintLogger, int version) { }
|
||||
public int Version { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.VirtualPathData GetVirtualPath(Microsoft.AspNetCore.Routing.VirtualPathContext context) { throw null; }
|
||||
public System.Threading.Tasks.Task RouteAsync(Microsoft.AspNetCore.Routing.RouteContext context) { throw null; }
|
||||
}
|
||||
[System.Diagnostics.DebuggerDisplayAttribute("{DebuggerToString(),nq}")]
|
||||
public partial class UrlMatchingNode
|
||||
{
|
||||
public UrlMatchingNode(int length) { }
|
||||
public Microsoft.AspNetCore.Routing.Tree.UrlMatchingNode CatchAlls { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.Tree.UrlMatchingNode ConstrainedCatchAlls { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Routing.Tree.UrlMatchingNode ConstrainedParameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int Depth { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool IsCatchAll { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.Dictionary<string, Microsoft.AspNetCore.Routing.Tree.UrlMatchingNode> Literals { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.List<Microsoft.AspNetCore.Routing.Tree.InboundMatch> Matches { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Tree.UrlMatchingNode Parameters { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public partial class UrlMatchingTree
|
||||
{
|
||||
public UrlMatchingTree(int order) { }
|
||||
public int Order { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Routing.Tree.UrlMatchingNode Root { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public static partial class RoutingServiceCollectionExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddRouting(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddRouting(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action<Microsoft.AspNetCore.Routing.RouteOptions> configureOptions) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
namespace Microsoft.AspNetCore.Builder
|
||||
{
|
||||
public partial class IISOptions
|
||||
{
|
||||
public IISOptions() { }
|
||||
public System.Collections.Generic.IList<Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription> AuthenticationDescriptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool AutomaticAuthentication { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool ForwardClientCertificate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool ForwardWindowsAuthentication { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Hosting
|
||||
{
|
||||
public static partial class WebHostBuilderIISExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Hosting.IWebHostBuilder UseIISIntegration(this Microsoft.AspNetCore.Hosting.IWebHostBuilder app) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.Server.IISIntegration
|
||||
{
|
||||
public partial class IISDefaults
|
||||
{
|
||||
public const string Negotiate = "Negotiate";
|
||||
public const string Ntlm = "NTLM";
|
||||
public IISDefaults() { }
|
||||
}
|
||||
public partial class IISMiddleware
|
||||
{
|
||||
public IISMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.IISOptions> options, string pairingToken) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext httpContext) { throw null; }
|
||||
}
|
||||
}
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -0,0 +1,125 @@
|
|||
namespace Microsoft.AspNetCore.Builder
|
||||
{
|
||||
public static partial class DefaultFilesExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDefaultFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDefaultFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.DefaultFilesOptions options) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDefaultFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string requestPath) { throw null; }
|
||||
}
|
||||
public partial class DefaultFilesOptions : Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptionsBase
|
||||
{
|
||||
public DefaultFilesOptions() : base (default(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions)) { }
|
||||
public DefaultFilesOptions(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions sharedOptions) : base (default(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions)) { }
|
||||
public System.Collections.Generic.IList<string> DefaultFileNames { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class DirectoryBrowserExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDirectoryBrowser(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDirectoryBrowser(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.DirectoryBrowserOptions options) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseDirectoryBrowser(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string requestPath) { throw null; }
|
||||
}
|
||||
public partial class DirectoryBrowserOptions : Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptionsBase
|
||||
{
|
||||
public DirectoryBrowserOptions() : base (default(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions)) { }
|
||||
public DirectoryBrowserOptions(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions sharedOptions) : base (default(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions)) { }
|
||||
public Microsoft.AspNetCore.StaticFiles.IDirectoryFormatter Formatter { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class FileServerExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.FileServerOptions options) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, bool enableDirectoryBrowsing) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseFileServer(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string requestPath) { throw null; }
|
||||
}
|
||||
public partial class FileServerOptions : Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptionsBase
|
||||
{
|
||||
public FileServerOptions() : base (default(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions)) { }
|
||||
public Microsoft.AspNetCore.Builder.DefaultFilesOptions DefaultFilesOptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.AspNetCore.Builder.DirectoryBrowserOptions DirectoryBrowserOptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool EnableDefaultFiles { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool EnableDirectoryBrowsing { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Builder.StaticFileOptions StaticFileOptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
public static partial class StaticFileExtensions
|
||||
{
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder app) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, Microsoft.AspNetCore.Builder.StaticFileOptions options) { throw null; }
|
||||
public static Microsoft.AspNetCore.Builder.IApplicationBuilder UseStaticFiles(this Microsoft.AspNetCore.Builder.IApplicationBuilder app, string requestPath) { throw null; }
|
||||
}
|
||||
public partial class StaticFileOptions : Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptionsBase
|
||||
{
|
||||
public StaticFileOptions() : base (default(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions)) { }
|
||||
public StaticFileOptions(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions sharedOptions) : base (default(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions)) { }
|
||||
public Microsoft.AspNetCore.StaticFiles.IContentTypeProvider ContentTypeProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string DefaultContentType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Action<Microsoft.AspNetCore.StaticFiles.StaticFileResponseContext> OnPrepareResponse { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool ServeUnknownFileTypes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.StaticFiles
|
||||
{
|
||||
public partial class DefaultFilesMiddleware
|
||||
{
|
||||
public DefaultFilesMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnv, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.DefaultFilesOptions> options) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class DirectoryBrowserMiddleware
|
||||
{
|
||||
public DirectoryBrowserMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnv, System.Text.Encodings.Web.HtmlEncoder encoder, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.DirectoryBrowserOptions> options) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class FileExtensionContentTypeProvider : Microsoft.AspNetCore.StaticFiles.IContentTypeProvider
|
||||
{
|
||||
public FileExtensionContentTypeProvider() { }
|
||||
public FileExtensionContentTypeProvider(System.Collections.Generic.IDictionary<string, string> mapping) { }
|
||||
public System.Collections.Generic.IDictionary<string, string> Mappings { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool TryGetContentType(string subpath, out string contentType) { contentType = default(string); throw null; }
|
||||
}
|
||||
public partial class HtmlDirectoryFormatter : Microsoft.AspNetCore.StaticFiles.IDirectoryFormatter
|
||||
{
|
||||
public HtmlDirectoryFormatter(System.Text.Encodings.Web.HtmlEncoder encoder) { }
|
||||
public virtual System.Threading.Tasks.Task GenerateContentAsync(Microsoft.AspNetCore.Http.HttpContext context, System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileProviders.IFileInfo> contents) { throw null; }
|
||||
}
|
||||
public partial interface IContentTypeProvider
|
||||
{
|
||||
bool TryGetContentType(string subpath, out string contentType);
|
||||
}
|
||||
public partial interface IDirectoryFormatter
|
||||
{
|
||||
System.Threading.Tasks.Task GenerateContentAsync(Microsoft.AspNetCore.Http.HttpContext context, System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileProviders.IFileInfo> contents);
|
||||
}
|
||||
public partial class StaticFileMiddleware
|
||||
{
|
||||
public StaticFileMiddleware(Microsoft.AspNetCore.Http.RequestDelegate next, Microsoft.AspNetCore.Hosting.IHostingEnvironment hostingEnv, Microsoft.Extensions.Options.IOptions<Microsoft.AspNetCore.Builder.StaticFileOptions> options, Microsoft.Extensions.Logging.ILoggerFactory loggerFactory) { }
|
||||
public System.Threading.Tasks.Task Invoke(Microsoft.AspNetCore.Http.HttpContext context) { throw null; }
|
||||
}
|
||||
public partial class StaticFileResponseContext
|
||||
{
|
||||
public StaticFileResponseContext() { }
|
||||
public Microsoft.AspNetCore.Http.HttpContext Context { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.Extensions.FileProviders.IFileInfo File { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.AspNetCore.StaticFiles.Infrastructure
|
||||
{
|
||||
public partial class SharedOptions
|
||||
{
|
||||
public SharedOptions() { }
|
||||
public Microsoft.Extensions.FileProviders.IFileProvider FileProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.AspNetCore.Http.PathString RequestPath { get { throw null; } set { } }
|
||||
}
|
||||
public abstract partial class SharedOptionsBase
|
||||
{
|
||||
protected SharedOptionsBase(Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions sharedOptions) { }
|
||||
public Microsoft.Extensions.FileProviders.IFileProvider FileProvider { get { throw null; } set { } }
|
||||
public Microsoft.AspNetCore.Http.PathString RequestPath { get { throw null; } set { } }
|
||||
protected Microsoft.AspNetCore.StaticFiles.Infrastructure.SharedOptions SharedOptions { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public static partial class DirectoryBrowserServiceExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddDirectoryBrowser(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,129 @@
|
|||
namespace Microsoft.AspNetCore.WebUtilities
|
||||
{
|
||||
public partial class FileBufferingReadStream : System.IO.Stream
|
||||
{
|
||||
public FileBufferingReadStream(System.IO.Stream inner, int memoryThreshold, System.Nullable<long> bufferLimit, System.Func<string> tempFileDirectoryAccessor) { }
|
||||
public FileBufferingReadStream(System.IO.Stream inner, int memoryThreshold, System.Nullable<long> bufferLimit, System.Func<string> tempFileDirectoryAccessor, System.Buffers.ArrayPool<byte> bytePool) { }
|
||||
public FileBufferingReadStream(System.IO.Stream inner, int memoryThreshold, System.Nullable<long> bufferLimit, string tempFileDirectory) { }
|
||||
public FileBufferingReadStream(System.IO.Stream inner, int memoryThreshold, System.Nullable<long> bufferLimit, string tempFileDirectory, System.Buffers.ArrayPool<byte> bytePool) { }
|
||||
public override bool CanRead { get { throw null; } }
|
||||
public override bool CanSeek { get { throw null; } }
|
||||
public override bool CanWrite { get { throw null; } }
|
||||
public bool InMemory { get { throw null; } }
|
||||
public override long Length { get { throw null; } }
|
||||
public override long Position { get { throw null; } set { } }
|
||||
public string TempFileName { get { throw null; } }
|
||||
protected override void Dispose(bool disposing) { }
|
||||
public override void Flush() { }
|
||||
public override int Read(byte[] buffer, int offset, int count) { throw null; }
|
||||
public override System.Threading.Tasks.Task<int> ReadAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
public override long Seek(long offset, System.IO.SeekOrigin origin) { throw null; }
|
||||
public override void SetLength(long value) { }
|
||||
public override void Write(byte[] buffer, int offset, int count) { }
|
||||
public override System.Threading.Tasks.Task WriteAsync(byte[] buffer, int offset, int count, System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
}
|
||||
public partial class FormReader : System.IDisposable
|
||||
{
|
||||
public const int DefaultKeyLengthLimit = 2048;
|
||||
public const int DefaultValueCountLimit = 1024;
|
||||
public const int DefaultValueLengthLimit = 4194304;
|
||||
public FormReader(System.IO.Stream stream) { }
|
||||
public FormReader(System.IO.Stream stream, System.Text.Encoding encoding) { }
|
||||
public FormReader(System.IO.Stream stream, System.Text.Encoding encoding, System.Buffers.ArrayPool<char> charPool) { }
|
||||
public FormReader(string data) { }
|
||||
public FormReader(string data, System.Buffers.ArrayPool<char> charPool) { }
|
||||
public int KeyLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int ValueCountLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int ValueLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public void Dispose() { }
|
||||
public System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> ReadForm() { throw null; }
|
||||
public System.Threading.Tasks.Task<System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues>> ReadFormAsync(System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
public System.Nullable<System.Collections.Generic.KeyValuePair<string, string>> ReadNextPair() { throw null; }
|
||||
public System.Threading.Tasks.Task<System.Nullable<System.Collections.Generic.KeyValuePair<string, string>>> ReadNextPairAsync(System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
}
|
||||
public partial class HttpRequestStreamReader : System.IO.TextReader
|
||||
{
|
||||
public HttpRequestStreamReader(System.IO.Stream stream, System.Text.Encoding encoding) { }
|
||||
public HttpRequestStreamReader(System.IO.Stream stream, System.Text.Encoding encoding, int bufferSize) { }
|
||||
public HttpRequestStreamReader(System.IO.Stream stream, System.Text.Encoding encoding, int bufferSize, System.Buffers.ArrayPool<byte> bytePool, System.Buffers.ArrayPool<char> charPool) { }
|
||||
protected override void Dispose(bool disposing) { }
|
||||
public override int Peek() { throw null; }
|
||||
public override int Read() { throw null; }
|
||||
public override int Read(char[] buffer, int index, int count) { throw null; }
|
||||
public override System.Threading.Tasks.Task<int> ReadAsync(char[] buffer, int index, int count) { throw null; }
|
||||
}
|
||||
public partial class HttpResponseStreamWriter : System.IO.TextWriter
|
||||
{
|
||||
public const int DefaultBufferSize = 1024;
|
||||
public HttpResponseStreamWriter(System.IO.Stream stream, System.Text.Encoding encoding) { }
|
||||
public HttpResponseStreamWriter(System.IO.Stream stream, System.Text.Encoding encoding, int bufferSize) { }
|
||||
public HttpResponseStreamWriter(System.IO.Stream stream, System.Text.Encoding encoding, int bufferSize, System.Buffers.ArrayPool<byte> bytePool, System.Buffers.ArrayPool<char> charPool) { }
|
||||
public override System.Text.Encoding Encoding { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
protected override void Dispose(bool disposing) { }
|
||||
public override void Flush() { }
|
||||
public override System.Threading.Tasks.Task FlushAsync() { throw null; }
|
||||
public override void Write(char value) { }
|
||||
public override void Write(char[] values, int index, int count) { }
|
||||
public override void Write(string value) { }
|
||||
public override System.Threading.Tasks.Task WriteAsync(char value) { throw null; }
|
||||
public override System.Threading.Tasks.Task WriteAsync(char[] values, int index, int count) { throw null; }
|
||||
public override System.Threading.Tasks.Task WriteAsync(string value) { throw null; }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct KeyValueAccumulator
|
||||
{
|
||||
public bool HasValues { get { throw null; } }
|
||||
public int KeyCount { get { throw null; } }
|
||||
public int ValueCount { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public void Append(string key, string value) { }
|
||||
public System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> GetResults() { throw null; }
|
||||
}
|
||||
public partial class MultipartReader
|
||||
{
|
||||
public const int DefaultHeadersCountLimit = 16;
|
||||
public const int DefaultHeadersLengthLimit = 16384;
|
||||
public MultipartReader(string boundary, System.IO.Stream stream) { }
|
||||
public MultipartReader(string boundary, System.IO.Stream stream, int bufferSize) { }
|
||||
public System.Nullable<long> BodyLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int HeadersCountLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int HeadersLengthLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Threading.Tasks.Task<Microsoft.AspNetCore.WebUtilities.MultipartSection> ReadNextSectionAsync(System.Threading.CancellationToken cancellationToken=default(System.Threading.CancellationToken)) { throw null; }
|
||||
}
|
||||
public partial class MultipartSection
|
||||
{
|
||||
public MultipartSection() { }
|
||||
public System.Nullable<long> BaseStreamOffset { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.IO.Stream Body { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string ContentDisposition { get { throw null; } }
|
||||
public string ContentType { get { throw null; } }
|
||||
public System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> Headers { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
public static partial class QueryHelpers
|
||||
{
|
||||
public static string AddQueryString(string uri, System.Collections.Generic.IDictionary<string, string> queryString) { throw null; }
|
||||
public static string AddQueryString(string uri, string name, string value) { throw null; }
|
||||
public static System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> ParseNullableQuery(string queryString) { throw null; }
|
||||
public static System.Collections.Generic.Dictionary<string, Microsoft.Extensions.Primitives.StringValues> ParseQuery(string queryString) { throw null; }
|
||||
}
|
||||
public static partial class ReasonPhrases
|
||||
{
|
||||
public static string GetReasonPhrase(int statusCode) { throw null; }
|
||||
}
|
||||
public static partial class StreamHelperExtensions
|
||||
{
|
||||
public static System.Threading.Tasks.Task DrainAsync(this System.IO.Stream stream, System.Buffers.ArrayPool<byte> bytePool, System.Nullable<long> limit, System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
public static System.Threading.Tasks.Task DrainAsync(this System.IO.Stream stream, System.Nullable<long> limit, System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
public static System.Threading.Tasks.Task DrainAsync(this System.IO.Stream stream, System.Threading.CancellationToken cancellationToken) { throw null; }
|
||||
}
|
||||
public static partial class WebEncoders
|
||||
{
|
||||
public static byte[] Base64UrlDecode(string input) { throw null; }
|
||||
public static byte[] Base64UrlDecode(string input, int offset, char[] buffer, int bufferOffset, int count) { throw null; }
|
||||
public static byte[] Base64UrlDecode(string input, int offset, int count) { throw null; }
|
||||
public static string Base64UrlEncode(byte[] input) { throw null; }
|
||||
public static int Base64UrlEncode(byte[] input, int offset, char[] output, int outputOffset, int count) { throw null; }
|
||||
public static string Base64UrlEncode(byte[] input, int offset, int count) { throw null; }
|
||||
public static int GetArraySizeRequiredToDecode(int count) { throw null; }
|
||||
public static int GetArraySizeRequiredToEncode(int count) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
|
||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>5212df06-c8d4-43b8-a0f7-d8e6e4d6b298</ProjectGuid>
|
||||
<RootNamespace>Microsoft.AspNetCore</RootNamespace>
|
||||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
|
||||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
|
||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
|
@ -0,0 +1,298 @@
|
|||
namespace Microsoft.Net.Http.Headers
|
||||
{
|
||||
public partial class CacheControlHeaderValue
|
||||
{
|
||||
public CacheControlHeaderValue() { }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> Extensions { get { throw null; } }
|
||||
public System.Nullable<System.TimeSpan> MaxAge { get { throw null; } set { } }
|
||||
public bool MaxStale { get { throw null; } set { } }
|
||||
public System.Nullable<System.TimeSpan> MaxStaleLimit { get { throw null; } set { } }
|
||||
public System.Nullable<System.TimeSpan> MinFresh { get { throw null; } set { } }
|
||||
public bool MustRevalidate { get { throw null; } set { } }
|
||||
public bool NoCache { get { throw null; } set { } }
|
||||
public System.Collections.Generic.ICollection<string> NoCacheHeaders { get { throw null; } }
|
||||
public bool NoStore { get { throw null; } set { } }
|
||||
public bool NoTransform { get { throw null; } set { } }
|
||||
public bool OnlyIfCached { get { throw null; } set { } }
|
||||
public bool Private { get { throw null; } set { } }
|
||||
public System.Collections.Generic.ICollection<string> PrivateHeaders { get { throw null; } }
|
||||
public bool ProxyRevalidate { get { throw null; } set { } }
|
||||
public bool Public { get { throw null; } set { } }
|
||||
public System.Nullable<System.TimeSpan> SharedMaxAge { get { throw null; } set { } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.CacheControlHeaderValue Parse(string input) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.CacheControlHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.CacheControlHeaderValue); throw null; }
|
||||
}
|
||||
public partial class ContentDispositionHeaderValue
|
||||
{
|
||||
public ContentDispositionHeaderValue(string dispositionType) { }
|
||||
public System.Nullable<System.DateTimeOffset> CreationDate { get { throw null; } set { } }
|
||||
public string DispositionType { get { throw null; } set { } }
|
||||
public string FileName { get { throw null; } set { } }
|
||||
public string FileNameStar { get { throw null; } set { } }
|
||||
public System.Nullable<System.DateTimeOffset> ModificationDate { get { throw null; } set { } }
|
||||
public string Name { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw null; } }
|
||||
public System.Nullable<System.DateTimeOffset> ReadDate { get { throw null; } set { } }
|
||||
public System.Nullable<long> Size { get { throw null; } set { } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.ContentDispositionHeaderValue Parse(string input) { throw null; }
|
||||
public void SetHttpFileName(string fileName) { }
|
||||
public void SetMimeFileName(string fileName) { }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.ContentDispositionHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.ContentDispositionHeaderValue); throw null; }
|
||||
}
|
||||
public partial class ContentRangeHeaderValue
|
||||
{
|
||||
public ContentRangeHeaderValue(long length) { }
|
||||
public ContentRangeHeaderValue(long from, long to) { }
|
||||
public ContentRangeHeaderValue(long from, long to, long length) { }
|
||||
public System.Nullable<long> From { get { throw null; } }
|
||||
public bool HasLength { get { throw null; } }
|
||||
public bool HasRange { get { throw null; } }
|
||||
public System.Nullable<long> Length { get { throw null; } }
|
||||
public System.Nullable<long> To { get { throw null; } }
|
||||
public string Unit { get { throw null; } set { } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.ContentRangeHeaderValue Parse(string input) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.ContentRangeHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.ContentRangeHeaderValue); throw null; }
|
||||
}
|
||||
public partial class CookieHeaderValue
|
||||
{
|
||||
public CookieHeaderValue(string name) { }
|
||||
public CookieHeaderValue(string name, string value) { }
|
||||
public string Name { get { throw null; } set { } }
|
||||
public string Value { get { throw null; } set { } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.CookieHeaderValue Parse(string input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.CookieHeaderValue> ParseList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.CookieHeaderValue> ParseStrictList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.CookieHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.CookieHeaderValue); throw null; }
|
||||
public static bool TryParseList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.CookieHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.CookieHeaderValue>); throw null; }
|
||||
public static bool TryParseStrictList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.CookieHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.CookieHeaderValue>); throw null; }
|
||||
}
|
||||
public partial class EntityTagHeaderValue
|
||||
{
|
||||
public EntityTagHeaderValue(string tag) { }
|
||||
public EntityTagHeaderValue(string tag, bool isWeak) { }
|
||||
public static Microsoft.Net.Http.Headers.EntityTagHeaderValue Any { get { throw null; } }
|
||||
public bool IsWeak { get { throw null; } }
|
||||
public string Tag { get { throw null; } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.EntityTagHeaderValue Parse(string input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue> ParseList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue> ParseStrictList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.EntityTagHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.EntityTagHeaderValue); throw null; }
|
||||
public static bool TryParseList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue>); throw null; }
|
||||
public static bool TryParseStrictList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.EntityTagHeaderValue>); throw null; }
|
||||
}
|
||||
public static partial class HeaderNames
|
||||
{
|
||||
public const string Accept = "Accept";
|
||||
public const string AcceptCharset = "Accept-Charset";
|
||||
public const string AcceptEncoding = "Accept-Encoding";
|
||||
public const string AcceptLanguage = "Accept-Language";
|
||||
public const string AcceptRanges = "Accept-Ranges";
|
||||
public const string Age = "Age";
|
||||
public const string Allow = "Allow";
|
||||
public const string Authorization = "Authorization";
|
||||
public const string CacheControl = "Cache-Control";
|
||||
public const string Connection = "Connection";
|
||||
public const string ContentDisposition = "Content-Disposition";
|
||||
public const string ContentEncoding = "Content-Encoding";
|
||||
public const string ContentLanguage = "Content-Language";
|
||||
public const string ContentLength = "Content-Length";
|
||||
public const string ContentLocation = "Content-Location";
|
||||
public const string ContentMD5 = "ContentMD5";
|
||||
public const string ContentRange = "Content-Range";
|
||||
public const string ContentType = "Content-Type";
|
||||
public const string Cookie = "Cookie";
|
||||
public const string Date = "Date";
|
||||
public const string ETag = "ETag";
|
||||
public const string Expect = "Expect";
|
||||
public const string Expires = "Expires";
|
||||
public const string From = "From";
|
||||
public const string Host = "Host";
|
||||
public const string IfMatch = "If-Match";
|
||||
public const string IfModifiedSince = "If-Modified-Since";
|
||||
public const string IfNoneMatch = "If-None-Match";
|
||||
public const string IfRange = "If-Range";
|
||||
public const string IfUnmodifiedSince = "If-Unmodified-Since";
|
||||
public const string LastModified = "Last-Modified";
|
||||
public const string Location = "Location";
|
||||
public const string MaxForwards = "Max-Forwards";
|
||||
public const string Pragma = "Pragma";
|
||||
public const string ProxyAuthenticate = "Proxy-Authenticate";
|
||||
public const string ProxyAuthorization = "Proxy-Authorization";
|
||||
public const string Range = "Range";
|
||||
public const string Referer = "Referer";
|
||||
public const string RetryAfter = "Retry-After";
|
||||
public const string Server = "Server";
|
||||
public const string SetCookie = "Set-Cookie";
|
||||
public const string TE = "TE";
|
||||
public const string Trailer = "Trailer";
|
||||
public const string TransferEncoding = "Transfer-Encoding";
|
||||
public const string Upgrade = "Upgrade";
|
||||
public const string UserAgent = "User-Agent";
|
||||
public const string Vary = "Vary";
|
||||
public const string Via = "Via";
|
||||
public const string Warning = "Warning";
|
||||
public const string WebSocketSubProtocols = "Sec-WebSocket-Protocol";
|
||||
public const string WWWAuthenticate = "WWW-Authenticate";
|
||||
}
|
||||
public static partial class HeaderQuality
|
||||
{
|
||||
public const double Match = 1;
|
||||
public const double NoMatch = 0;
|
||||
}
|
||||
public static partial class HeaderUtilities
|
||||
{
|
||||
public static string FormatDate(System.DateTimeOffset dateTime) { throw null; }
|
||||
public static string FormatInt64(long value) { throw null; }
|
||||
public static string RemoveQuotes(string input) { throw null; }
|
||||
public static bool TryParseDate(string input, out System.DateTimeOffset result) { result = default(System.DateTimeOffset); throw null; }
|
||||
public static bool TryParseInt64(string value, out long result) { result = default(long); throw null; }
|
||||
}
|
||||
public partial class MediaTypeHeaderValue
|
||||
{
|
||||
public MediaTypeHeaderValue(string mediaType) { }
|
||||
public MediaTypeHeaderValue(string mediaType, double quality) { }
|
||||
public string Boundary { get { throw null; } set { } }
|
||||
public string Charset { get { throw null; } set { } }
|
||||
public System.Text.Encoding Encoding { get { throw null; } set { } }
|
||||
public bool IsReadOnly { get { throw null; } }
|
||||
public bool MatchesAllSubTypes { get { throw null; } }
|
||||
public bool MatchesAllTypes { get { throw null; } }
|
||||
public string MediaType { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw null; } }
|
||||
public System.Nullable<double> Quality { get { throw null; } set { } }
|
||||
public string SubType { get { throw null; } }
|
||||
public string Type { get { throw null; } }
|
||||
public Microsoft.Net.Http.Headers.MediaTypeHeaderValue Copy() { throw null; }
|
||||
public Microsoft.Net.Http.Headers.MediaTypeHeaderValue CopyAsReadOnly() { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public bool IsSubsetOf(Microsoft.Net.Http.Headers.MediaTypeHeaderValue otherMediaType) { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.MediaTypeHeaderValue Parse(string input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.MediaTypeHeaderValue> ParseList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.MediaTypeHeaderValue> ParseStrictList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.MediaTypeHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.MediaTypeHeaderValue); throw null; }
|
||||
public static bool TryParseList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.MediaTypeHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.MediaTypeHeaderValue>); throw null; }
|
||||
public static bool TryParseStrictList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.MediaTypeHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.MediaTypeHeaderValue>); throw null; }
|
||||
}
|
||||
public partial class MediaTypeHeaderValueComparer : System.Collections.Generic.IComparer<Microsoft.Net.Http.Headers.MediaTypeHeaderValue>
|
||||
{
|
||||
internal MediaTypeHeaderValueComparer() { }
|
||||
public static Microsoft.Net.Http.Headers.MediaTypeHeaderValueComparer QualityComparer { get { throw null; } }
|
||||
public int Compare(Microsoft.Net.Http.Headers.MediaTypeHeaderValue mediaType1, Microsoft.Net.Http.Headers.MediaTypeHeaderValue mediaType2) { throw null; }
|
||||
}
|
||||
public partial class NameValueHeaderValue
|
||||
{
|
||||
public NameValueHeaderValue(string name) { }
|
||||
public NameValueHeaderValue(string name, string value) { }
|
||||
public bool IsReadOnly { get { throw null; } }
|
||||
public string Name { get { throw null; } }
|
||||
public string Value { get { throw null; } set { } }
|
||||
public Microsoft.Net.Http.Headers.NameValueHeaderValue Copy() { throw null; }
|
||||
public Microsoft.Net.Http.Headers.NameValueHeaderValue CopyAsReadOnly() { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.NameValueHeaderValue Find(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> values, string name) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.NameValueHeaderValue Parse(string input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> ParseList(System.Collections.Generic.IList<string> input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> ParseStrictList(System.Collections.Generic.IList<string> input) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.NameValueHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.NameValueHeaderValue); throw null; }
|
||||
public static bool TryParseList(System.Collections.Generic.IList<string> input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue>); throw null; }
|
||||
public static bool TryParseStrictList(System.Collections.Generic.IList<string> input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.NameValueHeaderValue>); throw null; }
|
||||
}
|
||||
public partial class RangeConditionHeaderValue
|
||||
{
|
||||
public RangeConditionHeaderValue(Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag) { }
|
||||
public RangeConditionHeaderValue(System.DateTimeOffset lastModified) { }
|
||||
public RangeConditionHeaderValue(string entityTag) { }
|
||||
public Microsoft.Net.Http.Headers.EntityTagHeaderValue EntityTag { get { throw null; } }
|
||||
public System.Nullable<System.DateTimeOffset> LastModified { get { throw null; } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.RangeConditionHeaderValue Parse(string input) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.RangeConditionHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.RangeConditionHeaderValue); throw null; }
|
||||
}
|
||||
public partial class RangeHeaderValue
|
||||
{
|
||||
public RangeHeaderValue() { }
|
||||
public RangeHeaderValue(System.Nullable<long> from, System.Nullable<long> to) { }
|
||||
public System.Collections.Generic.ICollection<Microsoft.Net.Http.Headers.RangeItemHeaderValue> Ranges { get { throw null; } }
|
||||
public string Unit { get { throw null; } set { } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.RangeHeaderValue Parse(string input) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.RangeHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.RangeHeaderValue); throw null; }
|
||||
}
|
||||
public partial class RangeItemHeaderValue
|
||||
{
|
||||
public RangeItemHeaderValue(System.Nullable<long> from, System.Nullable<long> to) { }
|
||||
public System.Nullable<long> From { get { throw null; } }
|
||||
public System.Nullable<long> To { get { throw null; } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
}
|
||||
public partial class SetCookieHeaderValue
|
||||
{
|
||||
public SetCookieHeaderValue(string name) { }
|
||||
public SetCookieHeaderValue(string name, string value) { }
|
||||
public string Domain { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Nullable<System.DateTimeOffset> Expires { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool HttpOnly { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Nullable<System.TimeSpan> MaxAge { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Name { get { throw null; } set { } }
|
||||
public string Path { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool Secure { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Value { get { throw null; } set { } }
|
||||
public void AppendToStringBuilder(System.Text.StringBuilder builder) { }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.SetCookieHeaderValue Parse(string input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.SetCookieHeaderValue> ParseList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.SetCookieHeaderValue> ParseStrictList(System.Collections.Generic.IList<string> inputs) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.SetCookieHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.SetCookieHeaderValue); throw null; }
|
||||
public static bool TryParseList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.SetCookieHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.SetCookieHeaderValue>); throw null; }
|
||||
public static bool TryParseStrictList(System.Collections.Generic.IList<string> inputs, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.SetCookieHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.SetCookieHeaderValue>); throw null; }
|
||||
}
|
||||
public partial class StringWithQualityHeaderValue
|
||||
{
|
||||
public StringWithQualityHeaderValue(string value) { }
|
||||
public StringWithQualityHeaderValue(string value, double quality) { }
|
||||
public System.Nullable<double> Quality { get { throw null; } }
|
||||
public string Value { get { throw null; } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static Microsoft.Net.Http.Headers.StringWithQualityHeaderValue Parse(string input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue> ParseList(System.Collections.Generic.IList<string> input) { throw null; }
|
||||
public static System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue> ParseStrictList(System.Collections.Generic.IList<string> input) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public static bool TryParse(string input, out Microsoft.Net.Http.Headers.StringWithQualityHeaderValue parsedValue) { parsedValue = default(Microsoft.Net.Http.Headers.StringWithQualityHeaderValue); throw null; }
|
||||
public static bool TryParseList(System.Collections.Generic.IList<string> input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue>); throw null; }
|
||||
public static bool TryParseStrictList(System.Collections.Generic.IList<string> input, out System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue> parsedValues) { parsedValues = default(System.Collections.Generic.IList<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue>); throw null; }
|
||||
}
|
||||
public partial class StringWithQualityHeaderValueComparer : System.Collections.Generic.IComparer<Microsoft.Net.Http.Headers.StringWithQualityHeaderValue>
|
||||
{
|
||||
internal StringWithQualityHeaderValueComparer() { }
|
||||
public static Microsoft.Net.Http.Headers.StringWithQualityHeaderValueComparer QualityComparer { get { throw null; } }
|
||||
public int Compare(Microsoft.Net.Http.Headers.StringWithQualityHeaderValue stringWithQuality1, Microsoft.Net.Http.Headers.StringWithQualityHeaderValue stringWithQuality2) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Microsoft.AspNetCore")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("5212df06-c8d4-43b8-a0f7-d8e6e4d6b298")]
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"buildOptions": {
|
||||
"allowUnsafe": true
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions": {
|
||||
"target": "project",
|
||||
"type": "build"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"version": "1.0.0",
|
||||
"type": "build"
|
||||
},
|
||||
"System.Net.WebSockets": "4.0.0",
|
||||
"System.Numerics.Vectors": "4.1.1",
|
||||
"System.Security.Claims": "4.0.1"
|
||||
},
|
||||
|
||||
"frameworks": {
|
||||
"netcoreapp1.0": {
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,52 @@
|
|||
namespace Microsoft.Extensions.Configuration
|
||||
{
|
||||
public static partial class ConfigurationExtensions
|
||||
{
|
||||
public static System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> AsEnumerable(this Microsoft.Extensions.Configuration.IConfiguration configuration) { throw null; }
|
||||
public static string GetConnectionString(this Microsoft.Extensions.Configuration.IConfiguration configuration, string name) { throw null; }
|
||||
}
|
||||
public static partial class ConfigurationPath
|
||||
{
|
||||
public static readonly string KeyDelimiter;
|
||||
public static string Combine(System.Collections.Generic.IEnumerable<string> pathSegments) { throw null; }
|
||||
public static string Combine(params string[] pathSegments) { throw null; }
|
||||
public static string GetParentPath(string path) { throw null; }
|
||||
public static string GetSectionKey(string path) { throw null; }
|
||||
}
|
||||
public partial interface IConfiguration
|
||||
{
|
||||
string this[string key] { get; set; }
|
||||
System.Collections.Generic.IEnumerable<Microsoft.Extensions.Configuration.IConfigurationSection> GetChildren();
|
||||
Microsoft.Extensions.Primitives.IChangeToken GetReloadToken();
|
||||
Microsoft.Extensions.Configuration.IConfigurationSection GetSection(string key);
|
||||
}
|
||||
public partial interface IConfigurationBuilder
|
||||
{
|
||||
System.Collections.Generic.Dictionary<string, object> Properties { get; }
|
||||
System.Collections.Generic.IEnumerable<Microsoft.Extensions.Configuration.IConfigurationSource> Sources { get; }
|
||||
Microsoft.Extensions.Configuration.IConfigurationBuilder Add(Microsoft.Extensions.Configuration.IConfigurationSource source);
|
||||
Microsoft.Extensions.Configuration.IConfigurationRoot Build();
|
||||
}
|
||||
public partial interface IConfigurationProvider
|
||||
{
|
||||
System.Collections.Generic.IEnumerable<string> GetChildKeys(System.Collections.Generic.IEnumerable<string> earlierKeys, string parentPath);
|
||||
Microsoft.Extensions.Primitives.IChangeToken GetReloadToken();
|
||||
void Load();
|
||||
void Set(string key, string value);
|
||||
bool TryGet(string key, out string value);
|
||||
}
|
||||
public partial interface IConfigurationRoot : Microsoft.Extensions.Configuration.IConfiguration
|
||||
{
|
||||
void Reload();
|
||||
}
|
||||
public partial interface IConfigurationSection : Microsoft.Extensions.Configuration.IConfiguration
|
||||
{
|
||||
string Key { get; }
|
||||
string Path { get; }
|
||||
string Value { get; set; }
|
||||
}
|
||||
public partial interface IConfigurationSource
|
||||
{
|
||||
Microsoft.Extensions.Configuration.IConfigurationProvider Build(Microsoft.Extensions.Configuration.IConfigurationBuilder builder);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
namespace Microsoft.Extensions.Configuration
|
||||
{
|
||||
public static partial class ConfigurationBinder
|
||||
{
|
||||
public static void Bind(this Microsoft.Extensions.Configuration.IConfiguration configuration, object instance) { }
|
||||
public static object GetValue(this Microsoft.Extensions.Configuration.IConfiguration configuration, System.Type type, string key) { throw null; }
|
||||
public static object GetValue(this Microsoft.Extensions.Configuration.IConfiguration configuration, System.Type type, string key, object defaultValue) { throw null; }
|
||||
public static T GetValue<T>(this Microsoft.Extensions.Configuration.IConfiguration configuration, string key) { throw null; }
|
||||
public static T GetValue<T>(this Microsoft.Extensions.Configuration.IConfiguration configuration, string key, T defaultValue) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
namespace Microsoft.Extensions.Configuration
|
||||
{
|
||||
public static partial class EnvironmentVariablesExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddEnvironmentVariables(this Microsoft.Extensions.Configuration.IConfigurationBuilder configurationBuilder) { throw null; }
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddEnvironmentVariables(this Microsoft.Extensions.Configuration.IConfigurationBuilder configurationBuilder, string prefix) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Configuration.EnvironmentVariables
|
||||
{
|
||||
public partial class EnvironmentVariablesConfigurationProvider : Microsoft.Extensions.Configuration.ConfigurationProvider
|
||||
{
|
||||
public EnvironmentVariablesConfigurationProvider() { }
|
||||
public EnvironmentVariablesConfigurationProvider(string prefix) { }
|
||||
public override void Load() { }
|
||||
}
|
||||
public partial class EnvironmentVariablesConfigurationSource : Microsoft.Extensions.Configuration.IConfigurationSource
|
||||
{
|
||||
public EnvironmentVariablesConfigurationSource() { }
|
||||
public string Prefix { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.Extensions.Configuration.IConfigurationProvider Build(Microsoft.Extensions.Configuration.IConfigurationBuilder builder) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,25 @@
|
|||
namespace Microsoft.Extensions.Configuration
|
||||
{
|
||||
public static partial class FileConfigurationExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.FileProviders.IFileProvider GetFileProvider(this Microsoft.Extensions.Configuration.IConfigurationBuilder builder) { throw null; }
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder SetBasePath(this Microsoft.Extensions.Configuration.IConfigurationBuilder builder, string basePath) { throw null; }
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder SetFileProvider(this Microsoft.Extensions.Configuration.IConfigurationBuilder builder, Microsoft.Extensions.FileProviders.IFileProvider fileProvider) { throw null; }
|
||||
}
|
||||
public abstract partial class FileConfigurationProvider : Microsoft.Extensions.Configuration.ConfigurationProvider
|
||||
{
|
||||
public FileConfigurationProvider(Microsoft.Extensions.Configuration.FileConfigurationSource source) { }
|
||||
public Microsoft.Extensions.Configuration.FileConfigurationSource Source { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public override void Load() { }
|
||||
public abstract void Load(System.IO.Stream stream);
|
||||
}
|
||||
public abstract partial class FileConfigurationSource : Microsoft.Extensions.Configuration.IConfigurationSource
|
||||
{
|
||||
protected FileConfigurationSource() { }
|
||||
public Microsoft.Extensions.FileProviders.IFileProvider FileProvider { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool Optional { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Path { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool ReloadOnChange { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public abstract Microsoft.Extensions.Configuration.IConfigurationProvider Build(Microsoft.Extensions.Configuration.IConfigurationBuilder builder);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
namespace Microsoft.Extensions.Configuration
|
||||
{
|
||||
public static partial class JsonConfigurationExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddJsonFile(this Microsoft.Extensions.Configuration.IConfigurationBuilder builder, Microsoft.Extensions.FileProviders.IFileProvider provider, string path, bool optional, bool reloadOnChange) { throw null; }
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddJsonFile(this Microsoft.Extensions.Configuration.IConfigurationBuilder builder, string path) { throw null; }
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddJsonFile(this Microsoft.Extensions.Configuration.IConfigurationBuilder builder, string path, bool optional) { throw null; }
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddJsonFile(this Microsoft.Extensions.Configuration.IConfigurationBuilder builder, string path, bool optional, bool reloadOnChange) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Configuration.Json
|
||||
{
|
||||
public partial class JsonConfigurationProvider : Microsoft.Extensions.Configuration.FileConfigurationProvider
|
||||
{
|
||||
public JsonConfigurationProvider(Microsoft.Extensions.Configuration.Json.JsonConfigurationSource source) : base (default(Microsoft.Extensions.Configuration.FileConfigurationSource)) { }
|
||||
public override void Load(System.IO.Stream stream) { }
|
||||
}
|
||||
public partial class JsonConfigurationSource : Microsoft.Extensions.Configuration.FileConfigurationSource
|
||||
{
|
||||
public JsonConfigurationSource() { }
|
||||
public override Microsoft.Extensions.Configuration.IConfigurationProvider Build(Microsoft.Extensions.Configuration.IConfigurationBuilder builder) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,77 @@
|
|||
namespace Microsoft.Extensions.Configuration
|
||||
{
|
||||
public partial class ConfigurationBuilder : Microsoft.Extensions.Configuration.IConfigurationBuilder
|
||||
{
|
||||
public ConfigurationBuilder() { }
|
||||
public System.Collections.Generic.Dictionary<string, object> Properties { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.Extensions.Configuration.IConfigurationSource> Sources { get { throw null; } }
|
||||
public Microsoft.Extensions.Configuration.IConfigurationBuilder Add(Microsoft.Extensions.Configuration.IConfigurationSource source) { throw null; }
|
||||
public Microsoft.Extensions.Configuration.IConfigurationRoot Build() { throw null; }
|
||||
}
|
||||
public partial class ConfigurationKeyComparer : System.Collections.Generic.IComparer<string>
|
||||
{
|
||||
public ConfigurationKeyComparer() { }
|
||||
public static Microsoft.Extensions.Configuration.ConfigurationKeyComparer Instance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int Compare(string x, string y) { throw null; }
|
||||
}
|
||||
public abstract partial class ConfigurationProvider : Microsoft.Extensions.Configuration.IConfigurationProvider
|
||||
{
|
||||
protected ConfigurationProvider() { }
|
||||
protected System.Collections.Generic.IDictionary<string, string> Data { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public virtual System.Collections.Generic.IEnumerable<string> GetChildKeys(System.Collections.Generic.IEnumerable<string> earlierKeys, string parentPath) { throw null; }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken GetReloadToken() { throw null; }
|
||||
public virtual void Load() { }
|
||||
protected void OnReload() { }
|
||||
public virtual void Set(string key, string value) { }
|
||||
public virtual bool TryGet(string key, out string value) { value = default(string); throw null; }
|
||||
}
|
||||
public partial class ConfigurationReloadToken : Microsoft.Extensions.Primitives.IChangeToken
|
||||
{
|
||||
public ConfigurationReloadToken() { }
|
||||
public bool ActiveChangeCallbacks { get { throw null; } }
|
||||
public bool HasChanged { get { throw null; } }
|
||||
public void OnReload() { }
|
||||
public System.IDisposable RegisterChangeCallback(System.Action<object> callback, object state) { throw null; }
|
||||
}
|
||||
public partial class ConfigurationRoot : Microsoft.Extensions.Configuration.IConfiguration, Microsoft.Extensions.Configuration.IConfigurationRoot
|
||||
{
|
||||
public ConfigurationRoot(System.Collections.Generic.IList<Microsoft.Extensions.Configuration.IConfigurationProvider> providers) { }
|
||||
public string this[string key] { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.Extensions.Configuration.IConfigurationSection> GetChildren() { throw null; }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken GetReloadToken() { throw null; }
|
||||
public Microsoft.Extensions.Configuration.IConfigurationSection GetSection(string key) { throw null; }
|
||||
public void Reload() { }
|
||||
}
|
||||
public partial class ConfigurationSection : Microsoft.Extensions.Configuration.IConfiguration, Microsoft.Extensions.Configuration.IConfigurationSection
|
||||
{
|
||||
public ConfigurationSection(Microsoft.Extensions.Configuration.ConfigurationRoot root, string path) { }
|
||||
public string this[string key] { get { throw null; } set { } }
|
||||
public string Key { get { throw null; } }
|
||||
public string Path { get { throw null; } }
|
||||
public string Value { get { throw null; } set { } }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.Extensions.Configuration.IConfigurationSection> GetChildren() { throw null; }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken GetReloadToken() { throw null; }
|
||||
public Microsoft.Extensions.Configuration.IConfigurationSection GetSection(string key) { throw null; }
|
||||
}
|
||||
public static partial class MemoryConfigurationBuilderExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddInMemoryCollection(this Microsoft.Extensions.Configuration.IConfigurationBuilder configurationBuilder) { throw null; }
|
||||
public static Microsoft.Extensions.Configuration.IConfigurationBuilder AddInMemoryCollection(this Microsoft.Extensions.Configuration.IConfigurationBuilder configurationBuilder, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> initialData) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Configuration.Memory
|
||||
{
|
||||
public partial class MemoryConfigurationProvider : Microsoft.Extensions.Configuration.ConfigurationProvider, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>>, System.Collections.IEnumerable
|
||||
{
|
||||
public MemoryConfigurationProvider(Microsoft.Extensions.Configuration.Memory.MemoryConfigurationSource source) { }
|
||||
public void Add(string key, string value) { }
|
||||
public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, string>> GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
}
|
||||
public partial class MemoryConfigurationSource : Microsoft.Extensions.Configuration.IConfigurationSource
|
||||
{
|
||||
public MemoryConfigurationSource() { }
|
||||
public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> InitialData { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.Extensions.Configuration.IConfigurationProvider Build(Microsoft.Extensions.Configuration.IConfigurationBuilder builder) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,130 @@
|
|||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public static partial class ActivatorUtilities
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.ObjectFactory CreateFactory(System.Type instanceType, System.Type[] argumentTypes) { throw null; }
|
||||
public static object CreateInstance(System.IServiceProvider provider, System.Type instanceType, params object[] parameters) { throw null; }
|
||||
public static T CreateInstance<T>(System.IServiceProvider provider, params object[] parameters) { throw null; }
|
||||
public static object GetServiceOrCreateInstance(System.IServiceProvider provider, System.Type type) { throw null; }
|
||||
public static T GetServiceOrCreateInstance<T>(System.IServiceProvider provider) { throw null; }
|
||||
}
|
||||
public partial interface IServiceCollection : System.Collections.Generic.ICollection<Microsoft.Extensions.DependencyInjection.ServiceDescriptor>, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyInjection.ServiceDescriptor>, System.Collections.Generic.IList<Microsoft.Extensions.DependencyInjection.ServiceDescriptor>, System.Collections.IEnumerable
|
||||
{
|
||||
}
|
||||
public partial interface IServiceScope : System.IDisposable
|
||||
{
|
||||
System.IServiceProvider ServiceProvider { get; }
|
||||
}
|
||||
public partial interface IServiceScopeFactory
|
||||
{
|
||||
Microsoft.Extensions.DependencyInjection.IServiceScope CreateScope();
|
||||
}
|
||||
public partial interface ISupportRequiredService
|
||||
{
|
||||
object GetRequiredService(System.Type serviceType);
|
||||
}
|
||||
public delegate object ObjectFactory(System.IServiceProvider serviceProvider, object[] arguments);
|
||||
public static partial class ServiceCollectionServiceExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddScoped(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddScoped(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType, System.Func<System.IServiceProvider, object> implementationFactory) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddScoped(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType, System.Type implementationType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddScoped<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddScoped<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddScoped<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddScoped<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TImplementation> implementationFactory) where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType, System.Func<System.IServiceProvider, object> implementationFactory) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType, object implementationInstance) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType, System.Type implementationType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, TService implementationInstance) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingleton<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TImplementation> implementationFactory) where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddTransient(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddTransient(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType, System.Func<System.IServiceProvider, object> implementationFactory) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddTransient(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Type serviceType, System.Type implementationType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddTransient<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddTransient<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddTransient<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddTransient<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TImplementation> implementationFactory) where TService : class where TImplementation : class, TService { throw null; }
|
||||
}
|
||||
[System.Diagnostics.DebuggerDisplayAttribute("Lifetime = {Lifetime}, ServiceType = {ServiceType}, ImplementationType = {ImplementationType}")]
|
||||
public partial class ServiceDescriptor
|
||||
{
|
||||
public ServiceDescriptor(System.Type serviceType, System.Func<System.IServiceProvider, object> factory, Microsoft.Extensions.DependencyInjection.ServiceLifetime lifetime) { }
|
||||
public ServiceDescriptor(System.Type serviceType, object instance) { }
|
||||
public ServiceDescriptor(System.Type serviceType, System.Type implementationType, Microsoft.Extensions.DependencyInjection.ServiceLifetime lifetime) { }
|
||||
public System.Func<System.IServiceProvider, object> ImplementationFactory { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public object ImplementationInstance { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Type ImplementationType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.Extensions.DependencyInjection.ServiceLifetime Lifetime { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Type ServiceType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Describe(System.Type serviceType, System.Func<System.IServiceProvider, object> implementationFactory, Microsoft.Extensions.DependencyInjection.ServiceLifetime lifetime) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Describe(System.Type serviceType, System.Type implementationType, Microsoft.Extensions.DependencyInjection.ServiceLifetime lifetime) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped(System.Type service, System.Func<System.IServiceProvider, object> implementationFactory) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped(System.Type service, System.Type implementationType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService>(System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService, TImplementation>() where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Scoped<TService, TImplementation>(System.Func<System.IServiceProvider, TImplementation> implementationFactory) where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Singleton(System.Type serviceType, System.Func<System.IServiceProvider, object> implementationFactory) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Singleton(System.Type serviceType, object implementationInstance) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Singleton(System.Type service, System.Type implementationType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Singleton<TService>(TService implementationInstance) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Singleton<TService>(System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Singleton<TService, TImplementation>() where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Singleton<TService, TImplementation>(System.Func<System.IServiceProvider, TImplementation> implementationFactory) where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient(System.Type service, System.Func<System.IServiceProvider, object> implementationFactory) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient(System.Type service, System.Type implementationType) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient<TService>(System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient<TService, TImplementation>() where TService : class where TImplementation : class, TService { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor Transient<TService, TImplementation>(System.Func<System.IServiceProvider, TImplementation> implementationFactory) where TService : class where TImplementation : class, TService { throw null; }
|
||||
}
|
||||
public enum ServiceLifetime
|
||||
{
|
||||
Scoped = 1,
|
||||
Singleton = 0,
|
||||
Transient = 2,
|
||||
}
|
||||
public static partial class ServiceProviderServiceExtensions
|
||||
{
|
||||
public static object GetRequiredService(this System.IServiceProvider provider, System.Type serviceType) { throw null; }
|
||||
public static T GetRequiredService<T>(this System.IServiceProvider provider) { throw null; }
|
||||
public static T GetService<T>(this System.IServiceProvider provider) { throw null; }
|
||||
public static System.Collections.Generic.IEnumerable<object> GetServices(this System.IServiceProvider provider, System.Type serviceType) { throw null; }
|
||||
public static System.Collections.Generic.IEnumerable<T> GetServices<T>(this System.IServiceProvider provider) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.DependencyInjection.Extensions
|
||||
{
|
||||
public static partial class ServiceCollectionDescriptorExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection Add(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Microsoft.Extensions.DependencyInjection.ServiceDescriptor descriptor) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection Add(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyInjection.ServiceDescriptor> descriptors) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection Replace(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Microsoft.Extensions.DependencyInjection.ServiceDescriptor descriptor) { throw null; }
|
||||
public static void TryAdd(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Microsoft.Extensions.DependencyInjection.ServiceDescriptor descriptor) { }
|
||||
public static void TryAdd(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyInjection.ServiceDescriptor> descriptors) { }
|
||||
public static void TryAddEnumerable(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Microsoft.Extensions.DependencyInjection.ServiceDescriptor descriptor) { }
|
||||
public static void TryAddEnumerable(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyInjection.ServiceDescriptor> descriptors) { }
|
||||
public static void TryAddScoped(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service) { }
|
||||
public static void TryAddScoped(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service, System.Func<System.IServiceProvider, object> implementationFactory) { }
|
||||
public static void TryAddScoped(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service, System.Type implementationType) { }
|
||||
public static void TryAddScoped<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class { }
|
||||
public static void TryAddScoped<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { }
|
||||
public static void TryAddScoped<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class where TImplementation : class, TService { }
|
||||
public static void TryAddSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service) { }
|
||||
public static void TryAddSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service, System.Func<System.IServiceProvider, object> implementationFactory) { }
|
||||
public static void TryAddSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service, System.Type implementationType) { }
|
||||
public static void TryAddSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class { }
|
||||
public static void TryAddSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, TService instance) where TService : class { }
|
||||
public static void TryAddSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { }
|
||||
public static void TryAddSingleton<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class where TImplementation : class, TService { }
|
||||
public static void TryAddTransient(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service) { }
|
||||
public static void TryAddTransient(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service, System.Func<System.IServiceProvider, object> implementationFactory) { }
|
||||
public static void TryAddTransient(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, System.Type service, System.Type implementationType) { }
|
||||
public static void TryAddTransient<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class { }
|
||||
public static void TryAddTransient<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Func<System.IServiceProvider, TService> implementationFactory) where TService : class { }
|
||||
public static void TryAddTransient<TService, TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection collection) where TService : class where TImplementation : class, TService { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,24 @@
|
|||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public partial class ServiceCollection : Microsoft.Extensions.DependencyInjection.IServiceCollection, System.Collections.Generic.ICollection<Microsoft.Extensions.DependencyInjection.ServiceDescriptor>, System.Collections.Generic.IEnumerable<Microsoft.Extensions.DependencyInjection.ServiceDescriptor>, System.Collections.Generic.IList<Microsoft.Extensions.DependencyInjection.ServiceDescriptor>, System.Collections.IEnumerable
|
||||
{
|
||||
public ServiceCollection() { }
|
||||
public int Count { get { throw null; } }
|
||||
public bool IsReadOnly { get { throw null; } }
|
||||
public Microsoft.Extensions.DependencyInjection.ServiceDescriptor this[int index] { get { throw null; } set { } }
|
||||
public void Clear() { }
|
||||
public bool Contains(Microsoft.Extensions.DependencyInjection.ServiceDescriptor item) { throw null; }
|
||||
public void CopyTo(Microsoft.Extensions.DependencyInjection.ServiceDescriptor[] array, int arrayIndex) { }
|
||||
public System.Collections.Generic.IEnumerator<Microsoft.Extensions.DependencyInjection.ServiceDescriptor> GetEnumerator() { throw null; }
|
||||
public int IndexOf(Microsoft.Extensions.DependencyInjection.ServiceDescriptor item) { throw null; }
|
||||
public void Insert(int index, Microsoft.Extensions.DependencyInjection.ServiceDescriptor item) { }
|
||||
public bool Remove(Microsoft.Extensions.DependencyInjection.ServiceDescriptor item) { throw null; }
|
||||
public void RemoveAt(int index) { }
|
||||
void System.Collections.Generic.ICollection<Microsoft.Extensions.DependencyInjection.ServiceDescriptor>.Add(Microsoft.Extensions.DependencyInjection.ServiceDescriptor item) { }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
}
|
||||
public static partial class ServiceCollectionContainerBuilderExtensions
|
||||
{
|
||||
public static System.IServiceProvider BuildServiceProvider(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,56 @@
|
|||
namespace Microsoft.Extensions.FileProviders
|
||||
{
|
||||
public partial interface IDirectoryContents : System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileProviders.IFileInfo>, System.Collections.IEnumerable
|
||||
{
|
||||
bool Exists { get; }
|
||||
}
|
||||
public partial interface IFileInfo
|
||||
{
|
||||
bool Exists { get; }
|
||||
bool IsDirectory { get; }
|
||||
System.DateTimeOffset LastModified { get; }
|
||||
long Length { get; }
|
||||
string Name { get; }
|
||||
string PhysicalPath { get; }
|
||||
System.IO.Stream CreateReadStream();
|
||||
}
|
||||
public partial interface IFileProvider
|
||||
{
|
||||
Microsoft.Extensions.FileProviders.IDirectoryContents GetDirectoryContents(string subpath);
|
||||
Microsoft.Extensions.FileProviders.IFileInfo GetFileInfo(string subpath);
|
||||
Microsoft.Extensions.Primitives.IChangeToken Watch(string filter);
|
||||
}
|
||||
public partial class NotFoundDirectoryContents : Microsoft.Extensions.FileProviders.IDirectoryContents, System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileProviders.IFileInfo>, System.Collections.IEnumerable
|
||||
{
|
||||
public NotFoundDirectoryContents() { }
|
||||
public bool Exists { get { throw null; } }
|
||||
public System.Collections.Generic.IEnumerator<Microsoft.Extensions.FileProviders.IFileInfo> GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
}
|
||||
public partial class NotFoundFileInfo : Microsoft.Extensions.FileProviders.IFileInfo
|
||||
{
|
||||
public NotFoundFileInfo(string name) { }
|
||||
public bool Exists { get { throw null; } }
|
||||
public bool IsDirectory { get { throw null; } }
|
||||
public System.DateTimeOffset LastModified { get { throw null; } }
|
||||
public long Length { get { throw null; } }
|
||||
public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string PhysicalPath { get { throw null; } }
|
||||
public System.IO.Stream CreateReadStream() { throw null; }
|
||||
}
|
||||
public partial class NullChangeToken : Microsoft.Extensions.Primitives.IChangeToken
|
||||
{
|
||||
internal NullChangeToken() { }
|
||||
public bool ActiveChangeCallbacks { get { throw null; } }
|
||||
public bool HasChanged { get { throw null; } }
|
||||
public static Microsoft.Extensions.FileProviders.NullChangeToken Singleton { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.IDisposable RegisterChangeCallback(System.Action<object> callback, object state) { throw null; }
|
||||
}
|
||||
public partial class NullFileProvider : Microsoft.Extensions.FileProviders.IFileProvider
|
||||
{
|
||||
public NullFileProvider() { }
|
||||
public Microsoft.Extensions.FileProviders.IDirectoryContents GetDirectoryContents(string subpath) { throw null; }
|
||||
public Microsoft.Extensions.FileProviders.IFileInfo GetFileInfo(string subpath) { throw null; }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken Watch(string filter) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,54 @@
|
|||
namespace Microsoft.Extensions.FileProviders
|
||||
{
|
||||
public partial class FileSystemInfoHelper
|
||||
{
|
||||
public FileSystemInfoHelper() { }
|
||||
}
|
||||
public partial class PhysicalFileProvider : Microsoft.Extensions.FileProviders.IFileProvider, System.IDisposable
|
||||
{
|
||||
public PhysicalFileProvider(string root) { }
|
||||
public string Root { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public Microsoft.Extensions.FileProviders.IDirectoryContents GetDirectoryContents(string subpath) { throw null; }
|
||||
public Microsoft.Extensions.FileProviders.IFileInfo GetFileInfo(string subpath) { throw null; }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken Watch(string filter) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.FileProviders.Physical
|
||||
{
|
||||
public partial class PhysicalDirectoryInfo : Microsoft.Extensions.FileProviders.IFileInfo
|
||||
{
|
||||
public PhysicalDirectoryInfo(System.IO.DirectoryInfo info) { }
|
||||
public bool Exists { get { throw null; } }
|
||||
public bool IsDirectory { get { throw null; } }
|
||||
public System.DateTimeOffset LastModified { get { throw null; } }
|
||||
public long Length { get { throw null; } }
|
||||
public string Name { get { throw null; } }
|
||||
public string PhysicalPath { get { throw null; } }
|
||||
public System.IO.Stream CreateReadStream() { throw null; }
|
||||
}
|
||||
public partial class PhysicalFileInfo : Microsoft.Extensions.FileProviders.IFileInfo
|
||||
{
|
||||
public PhysicalFileInfo(System.IO.FileInfo info) { }
|
||||
public bool Exists { get { throw null; } }
|
||||
public bool IsDirectory { get { throw null; } }
|
||||
public System.DateTimeOffset LastModified { get { throw null; } }
|
||||
public long Length { get { throw null; } }
|
||||
public string Name { get { throw null; } }
|
||||
public string PhysicalPath { get { throw null; } }
|
||||
public System.IO.Stream CreateReadStream() { throw null; }
|
||||
}
|
||||
public partial class PhysicalFilesWatcher : System.IDisposable
|
||||
{
|
||||
public PhysicalFilesWatcher(string root, System.IO.FileSystemWatcher fileSystemWatcher, bool pollForChanges) { }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken CreateFileChangeToken(string filter) { throw null; }
|
||||
public void Dispose() { }
|
||||
}
|
||||
public partial class PollingFileChangeToken : Microsoft.Extensions.Primitives.IChangeToken
|
||||
{
|
||||
public PollingFileChangeToken(System.IO.FileInfo fileInfo) { }
|
||||
public bool ActiveChangeCallbacks { get { throw null; } }
|
||||
public bool HasChanged { get { throw null; } }
|
||||
public System.IDisposable RegisterChangeCallback(System.Action<object> callback, object state) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,246 @@
|
|||
namespace Microsoft.Extensions.FileSystemGlobbing
|
||||
{
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct FilePatternMatch : System.IEquatable<Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch>
|
||||
{
|
||||
public FilePatternMatch(string path, string stem) { throw null;}
|
||||
public string Path { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Stem { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Equals(Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch other) { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
}
|
||||
public partial class Matcher
|
||||
{
|
||||
public Matcher() { }
|
||||
public Matcher(System.StringComparison comparisonType) { }
|
||||
public virtual Microsoft.Extensions.FileSystemGlobbing.Matcher AddExclude(string pattern) { throw null; }
|
||||
public virtual Microsoft.Extensions.FileSystemGlobbing.Matcher AddInclude(string pattern) { throw null; }
|
||||
public virtual Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult Execute(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directoryInfo) { throw null; }
|
||||
}
|
||||
public static partial class MatcherExtensions
|
||||
{
|
||||
public static void AddExcludePatterns(this Microsoft.Extensions.FileSystemGlobbing.Matcher matcher, params System.Collections.Generic.IEnumerable<string>[] excludePatternsGroups) { }
|
||||
public static void AddIncludePatterns(this Microsoft.Extensions.FileSystemGlobbing.Matcher matcher, params System.Collections.Generic.IEnumerable<string>[] includePatternsGroups) { }
|
||||
public static System.Collections.Generic.IEnumerable<string> GetResultsInFullPath(this Microsoft.Extensions.FileSystemGlobbing.Matcher matcher, string directoryPath) { throw null; }
|
||||
}
|
||||
public partial class PatternMatchingResult
|
||||
{
|
||||
public PatternMatchingResult(System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch> files) { }
|
||||
public System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileSystemGlobbing.FilePatternMatch> Files { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.FileSystemGlobbing.Abstractions
|
||||
{
|
||||
public abstract partial class DirectoryInfoBase : Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase
|
||||
{
|
||||
protected DirectoryInfoBase() { }
|
||||
public abstract System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase> EnumerateFileSystemInfos();
|
||||
public abstract Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase GetDirectory(string path);
|
||||
public abstract Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase GetFile(string path);
|
||||
}
|
||||
public partial class DirectoryInfoWrapper : Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase
|
||||
{
|
||||
public DirectoryInfoWrapper(System.IO.DirectoryInfo directoryInfo, bool isParentPath=false) { }
|
||||
public override string FullName { get { throw null; } }
|
||||
public override string Name { get { throw null; } }
|
||||
public override Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase ParentDirectory { get { throw null; } }
|
||||
public override System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase> EnumerateFileSystemInfos() { throw null; }
|
||||
public override Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase GetDirectory(string name) { throw null; }
|
||||
public override Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase GetFile(string name) { throw null; }
|
||||
}
|
||||
public abstract partial class FileInfoBase : Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase
|
||||
{
|
||||
protected FileInfoBase() { }
|
||||
}
|
||||
public partial class FileInfoWrapper : Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase
|
||||
{
|
||||
public FileInfoWrapper(System.IO.FileInfo fileInfo) { }
|
||||
public override string FullName { get { throw null; } }
|
||||
public override string Name { get { throw null; } }
|
||||
public override Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase ParentDirectory { get { throw null; } }
|
||||
}
|
||||
public abstract partial class FileSystemInfoBase
|
||||
{
|
||||
protected FileSystemInfoBase() { }
|
||||
public abstract string FullName { get; }
|
||||
public abstract string Name { get; }
|
||||
public abstract Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase ParentDirectory { get; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.FileSystemGlobbing.Internal
|
||||
{
|
||||
public partial interface ILinearPattern : Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern
|
||||
{
|
||||
System.Collections.Generic.IList<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment> Segments { get; }
|
||||
}
|
||||
public partial interface IPathSegment
|
||||
{
|
||||
bool CanProduceStem { get; }
|
||||
bool Match(string value);
|
||||
}
|
||||
public partial interface IPattern
|
||||
{
|
||||
Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext CreatePatternContextForExclude();
|
||||
Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext CreatePatternContextForInclude();
|
||||
}
|
||||
public partial interface IPatternContext
|
||||
{
|
||||
void Declare(System.Action<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment, bool> onDeclare);
|
||||
void PopDirectory();
|
||||
void PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory);
|
||||
bool Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory);
|
||||
Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase file);
|
||||
}
|
||||
public partial interface IRaggedPattern : Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern
|
||||
{
|
||||
System.Collections.Generic.IList<System.Collections.Generic.IList<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment>> Contains { get; }
|
||||
System.Collections.Generic.IList<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment> EndsWith { get; }
|
||||
System.Collections.Generic.IList<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment> Segments { get; }
|
||||
System.Collections.Generic.IList<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment> StartsWith { get; }
|
||||
}
|
||||
public partial class MatcherContext
|
||||
{
|
||||
public MatcherContext(System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern> includePatterns, System.Collections.Generic.IEnumerable<Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern> excludePatterns, Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directoryInfo, System.StringComparison comparison) { }
|
||||
public Microsoft.Extensions.FileSystemGlobbing.PatternMatchingResult Execute() { throw null; }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct PatternTestResult
|
||||
{
|
||||
public static readonly Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult Failed;
|
||||
public bool IsSuccessful { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Stem { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public static Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult Success(string stem) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments
|
||||
{
|
||||
public partial class CurrentPathSegment : Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment
|
||||
{
|
||||
public CurrentPathSegment() { }
|
||||
public bool CanProduceStem { get { throw null; } }
|
||||
public bool Match(string value) { throw null; }
|
||||
}
|
||||
public partial class LiteralPathSegment : Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment
|
||||
{
|
||||
public LiteralPathSegment(string value, System.StringComparison comparisonType) { }
|
||||
public bool CanProduceStem { get { throw null; } }
|
||||
public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public bool Match(string value) { throw null; }
|
||||
}
|
||||
public partial class ParentPathSegment : Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment
|
||||
{
|
||||
public ParentPathSegment() { }
|
||||
public bool CanProduceStem { get { throw null; } }
|
||||
public bool Match(string value) { throw null; }
|
||||
}
|
||||
public partial class RecursiveWildcardSegment : Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment
|
||||
{
|
||||
public RecursiveWildcardSegment() { }
|
||||
public bool CanProduceStem { get { throw null; } }
|
||||
public bool Match(string value) { throw null; }
|
||||
}
|
||||
public partial class WildcardPathSegment : Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment
|
||||
{
|
||||
public static readonly Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments.WildcardPathSegment MatchAll;
|
||||
public WildcardPathSegment(string beginsWith, System.Collections.Generic.List<string> contains, string endsWith, System.StringComparison comparisonType) { }
|
||||
public string BeginsWith { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool CanProduceStem { get { throw null; } }
|
||||
public System.Collections.Generic.List<string> Contains { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string EndsWith { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool Match(string value) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts
|
||||
{
|
||||
public abstract partial class PatternContext<TFrame> : Microsoft.Extensions.FileSystemGlobbing.Internal.IPatternContext
|
||||
{
|
||||
protected TFrame Frame;
|
||||
protected PatternContext() { }
|
||||
public virtual void Declare(System.Action<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment, bool> declare) { }
|
||||
protected bool IsStackEmpty() { throw null; }
|
||||
public virtual void PopDirectory() { }
|
||||
protected void PushDataFrame(TFrame frame) { }
|
||||
public abstract void PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory);
|
||||
public abstract bool Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory);
|
||||
public abstract Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase file);
|
||||
}
|
||||
public abstract partial class PatternContextLinear : Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext<Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear.FrameData>
|
||||
{
|
||||
public PatternContextLinear(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern pattern) { }
|
||||
protected Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern Pattern { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
protected string CalculateStem(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase matchedFile) { throw null; }
|
||||
protected bool IsLastSegment() { throw null; }
|
||||
public override void PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory) { }
|
||||
public override Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase file) { throw null; }
|
||||
protected bool TestMatchingSegment(string value) { throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct FrameData
|
||||
{
|
||||
public bool InStem;
|
||||
public bool IsNotApplicable;
|
||||
public int SegmentIndex;
|
||||
public string Stem { get { throw null; } }
|
||||
public System.Collections.Generic.IList<string> StemItems { get { throw null; } }
|
||||
}
|
||||
}
|
||||
public partial class PatternContextLinearExclude : Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear
|
||||
{
|
||||
public PatternContextLinearExclude(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern pattern) : base (default(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)) { }
|
||||
public override bool Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory) { throw null; }
|
||||
}
|
||||
public partial class PatternContextLinearInclude : Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextLinear
|
||||
{
|
||||
public PatternContextLinearInclude(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern pattern) : base (default(Microsoft.Extensions.FileSystemGlobbing.Internal.ILinearPattern)) { }
|
||||
public override void Declare(System.Action<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment, bool> onDeclare) { }
|
||||
public override bool Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory) { throw null; }
|
||||
}
|
||||
public abstract partial class PatternContextRagged : Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContext<Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged.FrameData>
|
||||
{
|
||||
public PatternContextRagged(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern pattern) { }
|
||||
protected Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern Pattern { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
protected string CalculateStem(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase matchedFile) { throw null; }
|
||||
protected bool IsEndingGroup() { throw null; }
|
||||
protected bool IsStartingGroup() { throw null; }
|
||||
public override void PopDirectory() { }
|
||||
public sealed override void PushDirectory(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory) { }
|
||||
public override Microsoft.Extensions.FileSystemGlobbing.Internal.PatternTestResult Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileInfoBase file) { throw null; }
|
||||
protected bool TestMatchingGroup(Microsoft.Extensions.FileSystemGlobbing.Abstractions.FileSystemInfoBase value) { throw null; }
|
||||
protected bool TestMatchingSegment(string value) { throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct FrameData
|
||||
{
|
||||
public int BacktrackAvailable;
|
||||
public bool InStem;
|
||||
public bool IsNotApplicable;
|
||||
public System.Collections.Generic.IList<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment> SegmentGroup;
|
||||
public int SegmentGroupIndex;
|
||||
public int SegmentIndex;
|
||||
public string Stem { get { throw null; } }
|
||||
public System.Collections.Generic.IList<string> StemItems { get { throw null; } }
|
||||
}
|
||||
}
|
||||
public partial class PatternContextRaggedExclude : Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged
|
||||
{
|
||||
public PatternContextRaggedExclude(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern pattern) : base (default(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)) { }
|
||||
public override bool Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory) { throw null; }
|
||||
}
|
||||
public partial class PatternContextRaggedInclude : Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts.PatternContextRagged
|
||||
{
|
||||
public PatternContextRaggedInclude(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern pattern) : base (default(Microsoft.Extensions.FileSystemGlobbing.Internal.IRaggedPattern)) { }
|
||||
public override void Declare(System.Action<Microsoft.Extensions.FileSystemGlobbing.Internal.IPathSegment, bool> onDeclare) { }
|
||||
public override bool Test(Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directory) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns
|
||||
{
|
||||
public partial class PatternBuilder
|
||||
{
|
||||
public PatternBuilder() { }
|
||||
public PatternBuilder(System.StringComparison comparisonType) { }
|
||||
public System.StringComparison ComparisonType { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern Build(string pattern) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,116 @@
|
|||
namespace Microsoft.Extensions.Logging
|
||||
{
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct EventId
|
||||
{
|
||||
public EventId(int id, string name=null) { throw null;}
|
||||
public int Id { get { throw null; } }
|
||||
public string Name { get { throw null; } }
|
||||
public static implicit operator Microsoft.Extensions.Logging.EventId (int i) { throw null; }
|
||||
}
|
||||
public partial interface ILogger
|
||||
{
|
||||
System.IDisposable BeginScope<TState>(TState state);
|
||||
bool IsEnabled(Microsoft.Extensions.Logging.LogLevel logLevel);
|
||||
void Log<TState>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, TState state, System.Exception exception, System.Func<TState, System.Exception, string> formatter);
|
||||
}
|
||||
public partial interface ILogger<out TCategoryName> : Microsoft.Extensions.Logging.ILogger
|
||||
{
|
||||
}
|
||||
public partial interface ILoggerFactory : System.IDisposable
|
||||
{
|
||||
void AddProvider(Microsoft.Extensions.Logging.ILoggerProvider provider);
|
||||
Microsoft.Extensions.Logging.ILogger CreateLogger(string categoryName);
|
||||
}
|
||||
public partial interface ILoggerProvider : System.IDisposable
|
||||
{
|
||||
Microsoft.Extensions.Logging.ILogger CreateLogger(string categoryName);
|
||||
}
|
||||
public partial class Logger<T> : Microsoft.Extensions.Logging.ILogger, Microsoft.Extensions.Logging.ILogger<T>
|
||||
{
|
||||
public Logger(Microsoft.Extensions.Logging.ILoggerFactory factory) { }
|
||||
System.IDisposable Microsoft.Extensions.Logging.ILogger.BeginScope<TState>(TState state) { throw null; }
|
||||
bool Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
|
||||
void Microsoft.Extensions.Logging.ILogger.Log<TState>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, TState state, System.Exception exception, System.Func<TState, System.Exception, string> formatter) { }
|
||||
}
|
||||
public static partial class LoggerExtensions
|
||||
{
|
||||
public static System.IDisposable BeginScope(this Microsoft.Extensions.Logging.ILogger logger, string messageFormat, params object[] args) { throw null; }
|
||||
public static void LogCritical(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, System.Exception exception, string message, params object[] args) { }
|
||||
public static void LogCritical(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args) { }
|
||||
public static void LogCritical(this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args) { }
|
||||
public static void LogDebug(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, System.Exception exception, string message, params object[] args) { }
|
||||
public static void LogDebug(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args) { }
|
||||
public static void LogDebug(this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args) { }
|
||||
public static void LogError(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, System.Exception exception, string message, params object[] args) { }
|
||||
public static void LogError(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args) { }
|
||||
public static void LogError(this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args) { }
|
||||
public static void LogInformation(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, System.Exception exception, string message, params object[] args) { }
|
||||
public static void LogInformation(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args) { }
|
||||
public static void LogInformation(this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args) { }
|
||||
public static void LogTrace(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, System.Exception exception, string message, params object[] args) { }
|
||||
public static void LogTrace(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args) { }
|
||||
public static void LogTrace(this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args) { }
|
||||
public static void LogWarning(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, System.Exception exception, string message, params object[] args) { }
|
||||
public static void LogWarning(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.EventId eventId, string message, params object[] args) { }
|
||||
public static void LogWarning(this Microsoft.Extensions.Logging.ILogger logger, string message, params object[] args) { }
|
||||
}
|
||||
public static partial class LoggerFactoryExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.Logging.ILogger CreateLogger(this Microsoft.Extensions.Logging.ILoggerFactory factory, System.Type type) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILogger<T> CreateLogger<T>(this Microsoft.Extensions.Logging.ILoggerFactory factory) { throw null; }
|
||||
}
|
||||
public static partial class LoggerMessage
|
||||
{
|
||||
public static System.Action<Microsoft.Extensions.Logging.ILogger, System.Exception> Define(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string formatString) { throw null; }
|
||||
public static System.Action<Microsoft.Extensions.Logging.ILogger, T1, System.Exception> Define<T1>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string formatString) { throw null; }
|
||||
public static System.Action<Microsoft.Extensions.Logging.ILogger, T1, T2, System.Exception> Define<T1, T2>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string formatString) { throw null; }
|
||||
public static System.Action<Microsoft.Extensions.Logging.ILogger, T1, T2, T3, System.Exception> Define<T1, T2, T3>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string formatString) { throw null; }
|
||||
public static System.Action<Microsoft.Extensions.Logging.ILogger, T1, T2, T3, T4, System.Exception> Define<T1, T2, T3, T4>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string formatString) { throw null; }
|
||||
public static System.Action<Microsoft.Extensions.Logging.ILogger, T1, T2, T3, T4, T5, System.Exception> Define<T1, T2, T3, T4, T5>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string formatString) { throw null; }
|
||||
public static System.Action<Microsoft.Extensions.Logging.ILogger, T1, T2, T3, T4, T5, T6, System.Exception> Define<T1, T2, T3, T4, T5, T6>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string formatString) { throw null; }
|
||||
public static System.Func<Microsoft.Extensions.Logging.ILogger, System.IDisposable> DefineScope(string formatString) { throw null; }
|
||||
public static System.Func<Microsoft.Extensions.Logging.ILogger, T1, System.IDisposable> DefineScope<T1>(string formatString) { throw null; }
|
||||
public static System.Func<Microsoft.Extensions.Logging.ILogger, T1, T2, System.IDisposable> DefineScope<T1, T2>(string formatString) { throw null; }
|
||||
public static System.Func<Microsoft.Extensions.Logging.ILogger, T1, T2, T3, System.IDisposable> DefineScope<T1, T2, T3>(string formatString) { throw null; }
|
||||
}
|
||||
public enum LogLevel
|
||||
{
|
||||
Critical = 5,
|
||||
Debug = 1,
|
||||
Error = 4,
|
||||
Information = 2,
|
||||
None = 6,
|
||||
Trace = 0,
|
||||
Warning = 3,
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Logging.Abstractions.Internal
|
||||
{
|
||||
public partial class TypeNameHelper
|
||||
{
|
||||
public TypeNameHelper() { }
|
||||
public static string GetTypeDisplayName(System.Type type) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Logging.Internal
|
||||
{
|
||||
public partial class FormattedLogValues : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.Generic.IReadOnlyCollection<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.Generic.IReadOnlyList<System.Collections.Generic.KeyValuePair<string, object>>, System.Collections.IEnumerable
|
||||
{
|
||||
public FormattedLogValues(string format, params object[] values) { }
|
||||
public int Count { get { throw null; } }
|
||||
public System.Collections.Generic.KeyValuePair<string, object> this[int index] { get { throw null; } }
|
||||
public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, object>> GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
}
|
||||
public partial class LogValuesFormatter
|
||||
{
|
||||
public LogValuesFormatter(string format) { }
|
||||
public string OriginalFormat { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Collections.Generic.List<string> ValueNames { get { throw null; } }
|
||||
public string Format(object[] values) { throw null; }
|
||||
public System.Collections.Generic.KeyValuePair<string, object> GetValue(object[] values, int index) { throw null; }
|
||||
public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, object>> GetValues(object[] values) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,96 @@
|
|||
namespace Microsoft.Extensions.Logging
|
||||
{
|
||||
public static partial class ConsoleLoggerExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory, Microsoft.Extensions.Configuration.IConfiguration configuration) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory, Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings settings) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory, Microsoft.Extensions.Logging.LogLevel minLevel) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory, Microsoft.Extensions.Logging.LogLevel minLevel, bool includeScopes) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory, bool includeScopes) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory, System.Func<string, Microsoft.Extensions.Logging.LogLevel, bool> filter) { throw null; }
|
||||
public static Microsoft.Extensions.Logging.ILoggerFactory AddConsole(this Microsoft.Extensions.Logging.ILoggerFactory factory, System.Func<string, Microsoft.Extensions.Logging.LogLevel, bool> filter, bool includeScopes) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Logging.Console
|
||||
{
|
||||
public partial class ConfigurationConsoleLoggerSettings : Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings
|
||||
{
|
||||
public ConfigurationConsoleLoggerSettings(Microsoft.Extensions.Configuration.IConfiguration configuration) { }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken ChangeToken { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool IncludeScopes { get { throw null; } }
|
||||
public Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings Reload() { throw null; }
|
||||
public bool TryGetSwitch(string name, out Microsoft.Extensions.Logging.LogLevel level) { level = default(Microsoft.Extensions.Logging.LogLevel); throw null; }
|
||||
}
|
||||
public partial class ConsoleLogger : Microsoft.Extensions.Logging.ILogger
|
||||
{
|
||||
public ConsoleLogger(string name, System.Func<string, Microsoft.Extensions.Logging.LogLevel, bool> filter, bool includeScopes) { }
|
||||
public Microsoft.Extensions.Logging.Console.Internal.IConsole Console { get { throw null; } set { } }
|
||||
public System.Func<string, Microsoft.Extensions.Logging.LogLevel, bool> Filter { get { throw null; } set { } }
|
||||
public bool IncludeScopes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.IDisposable BeginScope<TState>(TState state) { throw null; }
|
||||
public bool IsEnabled(Microsoft.Extensions.Logging.LogLevel logLevel) { throw null; }
|
||||
public void Log<TState>(Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, TState state, System.Exception exception, System.Func<TState, System.Exception, string> formatter) { }
|
||||
public virtual void WriteMessage(Microsoft.Extensions.Logging.LogLevel logLevel, string logName, int eventId, string message, System.Exception exception) { }
|
||||
}
|
||||
public partial class ConsoleLoggerProvider : Microsoft.Extensions.Logging.ILoggerProvider, System.IDisposable
|
||||
{
|
||||
public ConsoleLoggerProvider(Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings settings) { }
|
||||
public ConsoleLoggerProvider(System.Func<string, Microsoft.Extensions.Logging.LogLevel, bool> filter, bool includeScopes) { }
|
||||
public Microsoft.Extensions.Logging.ILogger CreateLogger(string name) { throw null; }
|
||||
public void Dispose() { }
|
||||
}
|
||||
public partial class ConsoleLoggerSettings : Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings
|
||||
{
|
||||
public ConsoleLoggerSettings() { }
|
||||
public Microsoft.Extensions.Primitives.IChangeToken ChangeToken { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public bool IncludeScopes { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Collections.Generic.IDictionary<string, Microsoft.Extensions.Logging.LogLevel> Switches { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings Reload() { throw null; }
|
||||
public bool TryGetSwitch(string name, out Microsoft.Extensions.Logging.LogLevel level) { level = default(Microsoft.Extensions.Logging.LogLevel); throw null; }
|
||||
}
|
||||
public partial class ConsoleLogScope
|
||||
{
|
||||
internal ConsoleLogScope() { }
|
||||
public static Microsoft.Extensions.Logging.Console.ConsoleLogScope Current { get { throw null; } set { } }
|
||||
public Microsoft.Extensions.Logging.Console.ConsoleLogScope Parent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public static System.IDisposable Push(string name, object state) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
}
|
||||
public partial interface IConsoleLoggerSettings
|
||||
{
|
||||
Microsoft.Extensions.Primitives.IChangeToken ChangeToken { get; }
|
||||
bool IncludeScopes { get; }
|
||||
Microsoft.Extensions.Logging.Console.IConsoleLoggerSettings Reload();
|
||||
bool TryGetSwitch(string name, out Microsoft.Extensions.Logging.LogLevel level);
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Logging.Console.Internal
|
||||
{
|
||||
public partial class AnsiLogConsole : Microsoft.Extensions.Logging.Console.Internal.IConsole
|
||||
{
|
||||
public AnsiLogConsole(Microsoft.Extensions.Logging.Console.Internal.IAnsiSystemConsole systemConsole) { }
|
||||
public void Flush() { }
|
||||
public void Write(string message, System.Nullable<System.ConsoleColor> background, System.Nullable<System.ConsoleColor> foreground) { }
|
||||
public void WriteLine(string message, System.Nullable<System.ConsoleColor> background, System.Nullable<System.ConsoleColor> foreground) { }
|
||||
}
|
||||
public partial interface IAnsiSystemConsole
|
||||
{
|
||||
void Write(string message);
|
||||
void WriteLine(string message);
|
||||
}
|
||||
public partial interface IConsole
|
||||
{
|
||||
void Flush();
|
||||
void Write(string message, System.Nullable<System.ConsoleColor> background, System.Nullable<System.ConsoleColor> foreground);
|
||||
void WriteLine(string message, System.Nullable<System.ConsoleColor> background, System.Nullable<System.ConsoleColor> foreground);
|
||||
}
|
||||
public partial class WindowsLogConsole : Microsoft.Extensions.Logging.Console.Internal.IConsole
|
||||
{
|
||||
public WindowsLogConsole() { }
|
||||
public void Flush() { }
|
||||
public void Write(string message, System.Nullable<System.ConsoleColor> background, System.Nullable<System.ConsoleColor> foreground) { }
|
||||
public void WriteLine(string message, System.Nullable<System.ConsoleColor> background, System.Nullable<System.ConsoleColor> foreground) { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public static partial class LoggingServiceCollectionExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddLogging(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Logging
|
||||
{
|
||||
public partial class LoggerFactory : Microsoft.Extensions.Logging.ILoggerFactory, System.IDisposable
|
||||
{
|
||||
public LoggerFactory() { }
|
||||
public void AddProvider(Microsoft.Extensions.Logging.ILoggerProvider provider) { }
|
||||
public Microsoft.Extensions.Logging.ILogger CreateLogger(string categoryName) { throw null; }
|
||||
public void Dispose() { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,63 @@
|
|||
namespace Microsoft.Extensions.ObjectPool
|
||||
{
|
||||
public partial class DefaultObjectPool<T> : Microsoft.Extensions.ObjectPool.ObjectPool<T> where T : class
|
||||
{
|
||||
public DefaultObjectPool(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T> policy) { }
|
||||
public DefaultObjectPool(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T> policy, int maximumRetained) { }
|
||||
public override T Get() { throw null; }
|
||||
public override void Return(T obj) { }
|
||||
}
|
||||
public partial class DefaultObjectPoolProvider : Microsoft.Extensions.ObjectPool.ObjectPoolProvider
|
||||
{
|
||||
public DefaultObjectPoolProvider() { }
|
||||
public int MaximumRetained { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public override Microsoft.Extensions.ObjectPool.ObjectPool<T> Create<T>(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T> policy) { throw null; }
|
||||
}
|
||||
public partial class DefaultPooledObjectPolicy<T> : Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T> where T : class, new()
|
||||
{
|
||||
public DefaultPooledObjectPolicy() { }
|
||||
public T Create() { throw null; }
|
||||
public bool Return(T obj) { throw null; }
|
||||
}
|
||||
public partial interface IPooledObjectPolicy<T>
|
||||
{
|
||||
T Create();
|
||||
bool Return(T obj);
|
||||
}
|
||||
public partial class LeakTrackingObjectPool<T> : Microsoft.Extensions.ObjectPool.ObjectPool<T> where T : class
|
||||
{
|
||||
public LeakTrackingObjectPool(Microsoft.Extensions.ObjectPool.ObjectPool<T> inner) { }
|
||||
public override T Get() { throw null; }
|
||||
public override void Return(T obj) { }
|
||||
}
|
||||
public partial class LeakTrackingObjectPoolProvider : Microsoft.Extensions.ObjectPool.ObjectPoolProvider
|
||||
{
|
||||
public LeakTrackingObjectPoolProvider(Microsoft.Extensions.ObjectPool.ObjectPoolProvider inner) { }
|
||||
public override Microsoft.Extensions.ObjectPool.ObjectPool<T> Create<T>(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T> policy) { throw null; }
|
||||
}
|
||||
public abstract partial class ObjectPool<T> where T : class
|
||||
{
|
||||
protected ObjectPool() { }
|
||||
public abstract T Get();
|
||||
public abstract void Return(T obj);
|
||||
}
|
||||
public abstract partial class ObjectPoolProvider
|
||||
{
|
||||
protected ObjectPoolProvider() { }
|
||||
public Microsoft.Extensions.ObjectPool.ObjectPool<T> Create<T>() where T : class, new() { throw null; }
|
||||
public abstract Microsoft.Extensions.ObjectPool.ObjectPool<T> Create<T>(Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<T> policy) where T : class;
|
||||
}
|
||||
public static partial class ObjectPoolProviderExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.ObjectPool.ObjectPool<System.Text.StringBuilder> CreateStringBuilderPool(this Microsoft.Extensions.ObjectPool.ObjectPoolProvider provider) { throw null; }
|
||||
public static Microsoft.Extensions.ObjectPool.ObjectPool<System.Text.StringBuilder> CreateStringBuilderPool(this Microsoft.Extensions.ObjectPool.ObjectPoolProvider provider, int initialCapacity, int maximumRetainedCapacity) { throw null; }
|
||||
}
|
||||
public partial class StringBuilderPooledObjectPolicy : Microsoft.Extensions.ObjectPool.IPooledObjectPolicy<System.Text.StringBuilder>
|
||||
{
|
||||
public StringBuilderPooledObjectPolicy() { }
|
||||
public int InitialCapacity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public int MaximumRetainedCapacity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
public System.Text.StringBuilder Create() { throw null; }
|
||||
public bool Return(System.Text.StringBuilder obj) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public static partial class OptionsConfigurationServiceCollectionExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection Configure<TOptions>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Microsoft.Extensions.Configuration.IConfiguration config) where TOptions : class { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Options
|
||||
{
|
||||
public partial class ConfigureFromConfigurationOptions<TOptions> : Microsoft.Extensions.Options.ConfigureOptions<TOptions> where TOptions : class
|
||||
{
|
||||
public ConfigureFromConfigurationOptions(Microsoft.Extensions.Configuration.IConfiguration config) : base (default(System.Action<TOptions>)) { }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public static partial class OptionsServiceCollectionExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddOptions(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection Configure<TOptions>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action<TOptions> configureOptions) where TOptions : class { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.Options
|
||||
{
|
||||
public partial class ConfigureOptions<TOptions> : Microsoft.Extensions.Options.IConfigureOptions<TOptions> where TOptions : class
|
||||
{
|
||||
public ConfigureOptions(System.Action<TOptions> action) { }
|
||||
public System.Action<TOptions> Action { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public virtual void Configure(TOptions options) { }
|
||||
}
|
||||
public partial interface IConfigureOptions<in TOptions> where TOptions : class
|
||||
{
|
||||
void Configure(TOptions options);
|
||||
}
|
||||
public partial interface IOptions<out TOptions> where TOptions : class, new()
|
||||
{
|
||||
TOptions Value { get; }
|
||||
}
|
||||
public partial interface IOptionsMonitor<out TOptions>
|
||||
{
|
||||
TOptions CurrentValue { get; }
|
||||
System.IDisposable OnChange(System.Action<TOptions> listener);
|
||||
}
|
||||
public static partial class Options
|
||||
{
|
||||
public static Microsoft.Extensions.Options.IOptions<TOptions> Create<TOptions>(TOptions options) where TOptions : class, new() { throw null; }
|
||||
}
|
||||
public partial class OptionsManager<TOptions> : Microsoft.Extensions.Options.IOptions<TOptions> where TOptions : class, new()
|
||||
{
|
||||
public OptionsManager(System.Collections.Generic.IEnumerable<Microsoft.Extensions.Options.IConfigureOptions<TOptions>> setups) { }
|
||||
public virtual TOptions Value { get { throw null; } }
|
||||
}
|
||||
public partial class OptionsWrapper<TOptions> : Microsoft.Extensions.Options.IOptions<TOptions> where TOptions : class, new()
|
||||
{
|
||||
public OptionsWrapper(TOptions options) { }
|
||||
public TOptions Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
namespace Microsoft.Extensions.PlatformAbstractions
|
||||
{
|
||||
public partial class ApplicationEnvironment
|
||||
{
|
||||
public ApplicationEnvironment() { }
|
||||
public string ApplicationBasePath { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string ApplicationName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string ApplicationVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public System.Runtime.Versioning.FrameworkName RuntimeFramework { get { throw null; } }
|
||||
}
|
||||
public partial class PlatformServices
|
||||
{
|
||||
internal PlatformServices() { }
|
||||
public Microsoft.Extensions.PlatformAbstractions.ApplicationEnvironment Application { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public static Microsoft.Extensions.PlatformAbstractions.PlatformServices Default { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,133 @@
|
|||
namespace Microsoft.Extensions.Primitives
|
||||
{
|
||||
public partial class CancellationChangeToken : Microsoft.Extensions.Primitives.IChangeToken
|
||||
{
|
||||
public CancellationChangeToken(System.Threading.CancellationToken cancellationToken) { }
|
||||
public bool ActiveChangeCallbacks { get { throw null; } }
|
||||
public bool HasChanged { get { throw null; } }
|
||||
public System.IDisposable RegisterChangeCallback(System.Action<object> callback, object state) { throw null; }
|
||||
}
|
||||
public static partial class ChangeToken
|
||||
{
|
||||
public static System.IDisposable OnChange(System.Func<Microsoft.Extensions.Primitives.IChangeToken> changeTokenProducer, System.Action changeTokenConsumer) { throw null; }
|
||||
public static System.IDisposable OnChange<TState>(System.Func<Microsoft.Extensions.Primitives.IChangeToken> changeTokenProducer, System.Action<TState> changeTokenConsumer, TState state) { throw null; }
|
||||
}
|
||||
public partial interface IChangeToken
|
||||
{
|
||||
bool ActiveChangeCallbacks { get; }
|
||||
bool HasChanged { get; }
|
||||
System.IDisposable RegisterChangeCallback(System.Action<object> callback, object state);
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct StringSegment : System.IEquatable<Microsoft.Extensions.Primitives.StringSegment>, System.IEquatable<string>
|
||||
{
|
||||
public StringSegment(string buffer) { throw null;}
|
||||
public StringSegment(string buffer, int offset, int length) { throw null;}
|
||||
public string Buffer { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public bool HasValue { get { throw null; } }
|
||||
public int Length { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public int Offset { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
public string Value { get { throw null; } }
|
||||
public bool EndsWith(string text, System.StringComparison comparisonType) { throw null; }
|
||||
public bool Equals(Microsoft.Extensions.Primitives.StringSegment other) { throw null; }
|
||||
public bool Equals(Microsoft.Extensions.Primitives.StringSegment other, System.StringComparison comparisonType) { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public bool Equals(string text) { throw null; }
|
||||
public bool Equals(string text, System.StringComparison comparisonType) { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public int IndexOf(char c) { throw null; }
|
||||
public int IndexOf(char c, int start) { throw null; }
|
||||
public int IndexOf(char c, int start, int count) { throw null; }
|
||||
public static bool operator ==(Microsoft.Extensions.Primitives.StringSegment left, Microsoft.Extensions.Primitives.StringSegment right) { throw null; }
|
||||
public static bool operator !=(Microsoft.Extensions.Primitives.StringSegment left, Microsoft.Extensions.Primitives.StringSegment right) { throw null; }
|
||||
public bool StartsWith(string text, System.StringComparison comparisonType) { throw null; }
|
||||
public Microsoft.Extensions.Primitives.StringSegment Subsegment(int offset, int length) { throw null; }
|
||||
public string Substring(int offset, int length) { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
public Microsoft.Extensions.Primitives.StringSegment Trim() { throw null; }
|
||||
public Microsoft.Extensions.Primitives.StringSegment TrimEnd() { throw null; }
|
||||
public Microsoft.Extensions.Primitives.StringSegment TrimStart() { throw null; }
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct StringTokenizer : System.Collections.Generic.IEnumerable<Microsoft.Extensions.Primitives.StringSegment>, System.Collections.IEnumerable
|
||||
{
|
||||
public StringTokenizer(string value, char[] separators) { throw null;}
|
||||
public Microsoft.Extensions.Primitives.StringTokenizer.Enumerator GetEnumerator() { throw null; }
|
||||
System.Collections.Generic.IEnumerator<Microsoft.Extensions.Primitives.StringSegment> System.Collections.Generic.IEnumerable<Microsoft.Extensions.Primitives.StringSegment>.GetEnumerator() { throw null; }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<Microsoft.Extensions.Primitives.StringSegment>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public Enumerator(ref Microsoft.Extensions.Primitives.StringTokenizer tokenizer) { throw null;}
|
||||
public Microsoft.Extensions.Primitives.StringSegment Current { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public void Dispose() { }
|
||||
public bool MoveNext() { throw null; }
|
||||
public void Reset() { }
|
||||
}
|
||||
}
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct StringValues : System.Collections.Generic.ICollection<string>, System.Collections.Generic.IEnumerable<string>, System.Collections.Generic.IList<string>, System.Collections.Generic.IReadOnlyCollection<string>, System.Collections.Generic.IReadOnlyList<string>, System.Collections.IEnumerable, System.IEquatable<Microsoft.Extensions.Primitives.StringValues>, System.IEquatable<string[]>, System.IEquatable<string>
|
||||
{
|
||||
public static readonly Microsoft.Extensions.Primitives.StringValues Empty;
|
||||
public StringValues(string value) { throw null;}
|
||||
public StringValues(string[] values) { throw null;}
|
||||
public int Count { get { throw null; } }
|
||||
public string this[int index] { get { throw null; } }
|
||||
bool System.Collections.Generic.ICollection<System.String>.IsReadOnly { get { throw null; } }
|
||||
string System.Collections.Generic.IList<System.String>.this[int index] { get { throw null; } set { } }
|
||||
public static Microsoft.Extensions.Primitives.StringValues Concat(Microsoft.Extensions.Primitives.StringValues values1, Microsoft.Extensions.Primitives.StringValues values2) { throw null; }
|
||||
public bool Equals(Microsoft.Extensions.Primitives.StringValues other) { throw null; }
|
||||
public static bool Equals(Microsoft.Extensions.Primitives.StringValues left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static bool Equals(Microsoft.Extensions.Primitives.StringValues left, string right) { throw null; }
|
||||
public static bool Equals(Microsoft.Extensions.Primitives.StringValues left, string[] right) { throw null; }
|
||||
public override bool Equals(object obj) { throw null; }
|
||||
public bool Equals(string other) { throw null; }
|
||||
public static bool Equals(string left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public bool Equals(string[] other) { throw null; }
|
||||
public static bool Equals(string[] left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public Microsoft.Extensions.Primitives.StringValues.Enumerator GetEnumerator() { throw null; }
|
||||
public override int GetHashCode() { throw null; }
|
||||
public static bool IsNullOrEmpty(Microsoft.Extensions.Primitives.StringValues value) { throw null; }
|
||||
public static bool operator ==(Microsoft.Extensions.Primitives.StringValues left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static bool operator ==(Microsoft.Extensions.Primitives.StringValues left, object right) { throw null; }
|
||||
public static bool operator ==(Microsoft.Extensions.Primitives.StringValues left, string right) { throw null; }
|
||||
public static bool operator ==(Microsoft.Extensions.Primitives.StringValues left, string[] right) { throw null; }
|
||||
public static bool operator ==(object left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static bool operator ==(string left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static bool operator ==(string[] left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static implicit operator string (Microsoft.Extensions.Primitives.StringValues values) { throw null; }
|
||||
public static implicit operator string[] (Microsoft.Extensions.Primitives.StringValues value) { throw null; }
|
||||
public static implicit operator Microsoft.Extensions.Primitives.StringValues (string value) { throw null; }
|
||||
public static implicit operator Microsoft.Extensions.Primitives.StringValues (string[] values) { throw null; }
|
||||
public static bool operator !=(Microsoft.Extensions.Primitives.StringValues left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static bool operator !=(Microsoft.Extensions.Primitives.StringValues left, object right) { throw null; }
|
||||
public static bool operator !=(Microsoft.Extensions.Primitives.StringValues left, string right) { throw null; }
|
||||
public static bool operator !=(Microsoft.Extensions.Primitives.StringValues left, string[] right) { throw null; }
|
||||
public static bool operator !=(object left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static bool operator !=(string left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
public static bool operator !=(string[] left, Microsoft.Extensions.Primitives.StringValues right) { throw null; }
|
||||
void System.Collections.Generic.ICollection<System.String>.Add(string item) { }
|
||||
void System.Collections.Generic.ICollection<System.String>.Clear() { }
|
||||
bool System.Collections.Generic.ICollection<System.String>.Contains(string item) { throw null; }
|
||||
void System.Collections.Generic.ICollection<System.String>.CopyTo(string[] array, int arrayIndex) { }
|
||||
bool System.Collections.Generic.ICollection<System.String>.Remove(string item) { throw null; }
|
||||
System.Collections.Generic.IEnumerator<string> System.Collections.Generic.IEnumerable<System.String>.GetEnumerator() { throw null; }
|
||||
int System.Collections.Generic.IList<System.String>.IndexOf(string item) { throw null; }
|
||||
void System.Collections.Generic.IList<System.String>.Insert(int index, string item) { }
|
||||
void System.Collections.Generic.IList<System.String>.RemoveAt(int index) { }
|
||||
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
|
||||
public string[] ToArray() { throw null; }
|
||||
public override string ToString() { throw null; }
|
||||
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
||||
public partial struct Enumerator : System.Collections.Generic.IEnumerator<string>, System.Collections.IEnumerator, System.IDisposable
|
||||
{
|
||||
public Enumerator(ref Microsoft.Extensions.Primitives.StringValues values) { throw null;}
|
||||
public string Current { get { throw null; } }
|
||||
object System.Collections.IEnumerator.Current { get { throw null; } }
|
||||
public bool MoveNext() { throw null; }
|
||||
void System.Collections.IEnumerator.Reset() { }
|
||||
void System.IDisposable.Dispose() { }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,52 @@
|
|||
namespace Microsoft.Extensions.DependencyInjection
|
||||
{
|
||||
public static partial class EncoderServiceCollectionExtensions
|
||||
{
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddWebEncoders(this Microsoft.Extensions.DependencyInjection.IServiceCollection services) { throw null; }
|
||||
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddWebEncoders(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, System.Action<Microsoft.Extensions.WebEncoders.WebEncoderOptions> setupAction) { throw null; }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.WebEncoders
|
||||
{
|
||||
public sealed partial class WebEncoderOptions
|
||||
{
|
||||
public WebEncoderOptions() { }
|
||||
public System.Text.Encodings.Web.TextEncoderSettings TextEncoderSettings { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
|
||||
}
|
||||
}
|
||||
namespace Microsoft.Extensions.WebEncoders.Testing
|
||||
{
|
||||
public sealed partial class HtmlTestEncoder : System.Text.Encodings.Web.HtmlEncoder
|
||||
{
|
||||
public HtmlTestEncoder() { }
|
||||
public override int MaxOutputCharactersPerInputCharacter { get { throw null; } }
|
||||
public override void Encode(System.IO.TextWriter output, char[] value, int startIndex, int characterCount) { }
|
||||
public override void Encode(System.IO.TextWriter output, string value, int startIndex, int characterCount) { }
|
||||
public override string Encode(string value) { throw null; }
|
||||
public unsafe override int FindFirstCharacterToEncode(char* text, int textLength) { throw null; }
|
||||
public unsafe override bool TryEncodeUnicodeScalar(int unicodeScalar, char* buffer, int bufferLength, out int numberOfCharactersWritten) { numberOfCharactersWritten = default(int); throw null; }
|
||||
public override bool WillEncode(int unicodeScalar) { throw null; }
|
||||
}
|
||||
public partial class JavaScriptTestEncoder : System.Text.Encodings.Web.JavaScriptEncoder
|
||||
{
|
||||
public JavaScriptTestEncoder() { }
|
||||
public override int MaxOutputCharactersPerInputCharacter { get { throw null; } }
|
||||
public override void Encode(System.IO.TextWriter output, char[] value, int startIndex, int characterCount) { }
|
||||
public override void Encode(System.IO.TextWriter output, string value, int startIndex, int characterCount) { }
|
||||
public override string Encode(string value) { throw null; }
|
||||
public unsafe override int FindFirstCharacterToEncode(char* text, int textLength) { throw null; }
|
||||
public unsafe override bool TryEncodeUnicodeScalar(int unicodeScalar, char* buffer, int bufferLength, out int numberOfCharactersWritten) { numberOfCharactersWritten = default(int); throw null; }
|
||||
public override bool WillEncode(int unicodeScalar) { throw null; }
|
||||
}
|
||||
public partial class UrlTestEncoder : System.Text.Encodings.Web.UrlEncoder
|
||||
{
|
||||
public UrlTestEncoder() { }
|
||||
public override int MaxOutputCharactersPerInputCharacter { get { throw null; } }
|
||||
public override void Encode(System.IO.TextWriter output, char[] value, int startIndex, int characterCount) { }
|
||||
public override void Encode(System.IO.TextWriter output, string value, int startIndex, int characterCount) { }
|
||||
public override string Encode(string value) { throw null; }
|
||||
public unsafe override int FindFirstCharacterToEncode(char* text, int textLength) { throw null; }
|
||||
public unsafe override bool TryEncodeUnicodeScalar(int unicodeScalar, char* buffer, int bufferLength, out int numberOfCharactersWritten) { numberOfCharactersWritten = default(int); throw null; }
|
||||
public override bool WillEncode(int unicodeScalar) { throw null; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
|
||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>8a0432a8-5efb-423f-8a26-eb5d8b602494</ProjectGuid>
|
||||
<RootNamespace>Microsoft.Extensions</RootNamespace>
|
||||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
|
||||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
|
||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
|
@ -0,0 +1,19 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Microsoft.Extensions")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("8a0432a8-5efb-423f-8a26-eb5d8b602494")]
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"buildOptions": {
|
||||
"allowUnsafe": true
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"version": "1.0.0",
|
||||
"type": "build"
|
||||
},
|
||||
"System.IO.FileSystem.Watcher": "4.0.0",
|
||||
"System.Text.Encodings.Web": "4.0.0"
|
||||
},
|
||||
|
||||
"frameworks": {
|
||||
"netcoreapp1.0": {
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
|
||||
namespace ConsoleApp1
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,19 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("ConsoleApp1")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("b9a0010a-9791-4eae-a6be-c6f0fbc25691")]
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0.25420" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0.25420</VisualStudioVersion>
|
||||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>5dc9554b-0a77-473c-beb1-8d92c37f80e9</ProjectGuid>
|
||||
<RootNamespace>Seed</RootNamespace>
|
||||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
|
||||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
|
||||
</Project>
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"version": "1.0.0-*",
|
||||
"buildOptions": {
|
||||
"emitEntryPoint": true,
|
||||
"preserveCompilationContext": true
|
||||
},
|
||||
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
|
||||
"Microsoft.AspNetCore.Hosting": "1.0.0",
|
||||
"Microsoft.AspNetCore.Routing": "1.0.1",
|
||||
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
|
||||
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
|
||||
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
|
||||
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
|
||||
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
|
||||
"Microsoft.Extensions.Configuration.Json": "1.0.0",
|
||||
"Microsoft.Extensions.Logging": "1.0.0",
|
||||
"Microsoft.Extensions.Logging.Console": "1.0.0",
|
||||
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
|
||||
"NETStandard.Library": "1.6.0",
|
||||
"System.Threading.Tasks.Extensions": "4.0.0",
|
||||
"Microsoft.NETCore.App": {
|
||||
"type": "platform",
|
||||
"version": "1.0.0"
|
||||
}
|
||||
},
|
||||
|
||||
"frameworks": {
|
||||
"netcoreapp1.0": {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче