1
pulg
2025-06-17 67ada359f4623556d2d5277048798bd2b31772d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.AspNetCore.Hosting.Server.Abstractions</name>
    </assembly>
    <members>
        <member name="T:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1">
            <summary>
            Represents an application.
            </summary>
            <typeparam name="TContext">The context associated with the application.</typeparam>
        </member>
        <member name="M:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1.CreateContext(Microsoft.AspNetCore.Http.Features.IFeatureCollection)">
            <summary>
            Create a TContext given a collection of HTTP features.
            </summary>
            <param name="contextFeatures">A collection of HTTP features to be used for creating the TContext.</param>
            <returns>The created TContext.</returns>
        </member>
        <member name="M:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1.ProcessRequestAsync(`0)">
            <summary>
            Asynchronously processes an TContext.
            </summary>
            <param name="context">The TContext that the operation will process.</param>
        </member>
        <member name="M:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1.DisposeContext(`0,System.Exception)">
            <summary>
            Dispose a given TContext.
            </summary>
            <param name="context">The TContext to be disposed.</param>
            <param name="exception">The Exception thrown when processing did not complete successfully, otherwise null.</param>
        </member>
        <member name="T:Microsoft.AspNetCore.Hosting.Server.IServer">
            <summary>
            Represents a server.
            </summary>
        </member>
        <member name="P:Microsoft.AspNetCore.Hosting.Server.IServer.Features">
            <summary>
            A collection of HTTP features of the server.
            </summary>
        </member>
        <member name="M:Microsoft.AspNetCore.Hosting.Server.IServer.Start``1(Microsoft.AspNetCore.Hosting.Server.IHttpApplication{``0})">
            <summary>
            Start the server with an application.
            </summary>
            <param name="application">An instance of <see cref="T:Microsoft.AspNetCore.Hosting.Server.IHttpApplication`1"/>.</param>
            <typeparam name="TContext">The context associated with the application.</typeparam>
        </member>
    </members>
</doc>