Tjiny
2025-05-19 4c8b2eea64bcd0ae14602a2a6e993b2d04c80ee0
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.Owin.Cors</name>
    </assembly>
    <members>
        <member name="T:Owin.CorsExtensions">
            <summary>
            Extension methods for adding CorsMiddleware to an application pipeline.
            </summary>
        </member>
        <member name="M:Owin.CorsExtensions.UseCors(Owin.IAppBuilder,Microsoft.Owin.Cors.CorsOptions)">
            <summary>
            Adds a CORS middleware to your web application pipeline to allow cross domain requests.
            </summary>
            <param name="app">The IAppBuilder passed to your configuration method</param>
            <param name="options">An options class that controls the middleware behavior</param>
            <returns>The original app parameter</returns>
        </member>
        <member name="T:Microsoft.Owin.Cors.CorsMiddleware">
            <summary>
            Processes requests according to the provided cross domain policy.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Cors.CorsMiddleware.#ctor(System.Func{System.Collections.Generic.IDictionary{System.String,System.Object},System.Threading.Tasks.Task},Microsoft.Owin.Cors.CorsOptions)">
            <summary>
            Creates a new instance of CorsMiddleware.
            </summary>
            <param name="next"></param>
            <param name="options"></param>
        </member>
        <member name="M:Microsoft.Owin.Cors.CorsMiddleware.Invoke(System.Collections.Generic.IDictionary{System.String,System.Object})">
            <summary>
            Evaluates and applies the CORS policy. Responses will be generated for preflight requests.
            Requests that are permitted by the CORS policy will be passed onto the next middleware.
            </summary>
            <param name="environment"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Cors.CorsOptions">
            <summary>
            Contains the options used by the CorsMiddleware
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Cors.CorsOptions.AllowAll">
            <summary>
            A policy that allows all headers, all methods, any origin and supports credentials
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Cors.CorsOptions.PolicyProvider">
            <summary>
            The cors policy to apply
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Cors.CorsOptions.CorsEngine">
            <summary>
            The cors engine
            </summary>
        </member>
        <member name="T:Microsoft.Owin.Cors.CorsPolicyProvider">
            <summary>
            A pluggable CORS policy provider that always returns null by default.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Cors.CorsPolicyProvider.#ctor">
            <summary>
            Creates a new CorsPolicyProvider instance.
            </summary>
        </member>
        <member name="P:Microsoft.Owin.Cors.CorsPolicyProvider.PolicyResolver">
            <summary>
            A pluggable callback that will be used to select the CORS policy for the given requests.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Cors.CorsPolicyProvider.GetCorsPolicyAsync(Microsoft.Owin.IOwinRequest)">
            <summary>
            Executes the PolicyResolver unless overridden by a subclass.
            </summary>
            <param name="request"></param>
            <returns></returns>
        </member>
        <member name="T:Microsoft.Owin.Cors.ICorsPolicyProvider">
            <summary>
            Defines how to select a CORS policy for a given request.
            </summary>
        </member>
        <member name="M:Microsoft.Owin.Cors.ICorsPolicyProvider.GetCorsPolicyAsync(Microsoft.Owin.IOwinRequest)">
            <summary>
            Selects a CORS policy to apply for the given request.
            </summary>
            <param name="request"></param>
            <returns>The CORS policy to apply to the request, or null if no policy applies and
            the request should be passed through to the next middleware.</returns>
        </member>
    </members>
</doc>