-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
UrlRoutingModule.xml
328 lines (318 loc) · 21 KB
/
UrlRoutingModule.xml
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<Type Name="UrlRoutingModule" FullName="System.Web.Routing.UrlRoutingModule">
<TypeSignature Language="C#" Value="public class UrlRoutingModule : System.Web.IHttpModule" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit UrlRoutingModule extends System.Object implements class System.Web.IHttpModule" />
<TypeSignature Language="DocId" Value="T:System.Web.Routing.UrlRoutingModule" />
<TypeSignature Language="VB.NET" Value="Public Class UrlRoutingModule
Implements IHttpModule" />
<TypeSignature Language="F#" Value="type UrlRoutingModule = class
 interface IHttpModule" />
<TypeSignature Language="C++ CLI" Value="public ref class UrlRoutingModule : System::Web::IHttpModule" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<TypeForwardingChain>
<TypeForwarding From="System.Web.Routing" FromVersion="4.0.0.0" To="System.Web" ToVersion="4.0.0.0" FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
</TypeForwardingChain>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface FrameworkAlternate="netframework-4.8.1">
<InterfaceName>System.Web.IHttpModule</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.Runtime.CompilerServices.TypeForwardedFrom("System.Web.Routing, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.TypeForwardedFrom("System.Web.Routing, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Matches a URL request to a defined route.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Web.Routing.UrlRoutingModule> class matches an HTTP request to a route in an ASP.NET application. The module iterates through all the routes in the <xref:System.Web.Routing.UrlRoutingModule.RouteCollection%2A> property and searches for a route that has a URL pattern that matches the format of the HTTP request. When the module finds a matching route, it retrieves the <xref:System.Web.Routing.IRouteHandler> object for that route. From the route handler, the module gets an <xref:System.Web.IHttpHandler> object and uses that as the HTTP handler for the current request.
]]></format>
</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public UrlRoutingModule ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Web.Routing.UrlRoutingModule.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 UrlRoutingModule();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.Web.Routing.UrlRoutingModule" /> class.</summary>
<remarks>To be added.</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
<Member MemberName="Dispose">
<MemberSignature Language="C#" Value="protected virtual void Dispose ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void Dispose() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Web.Routing.UrlRoutingModule.Dispose" />
<MemberSignature Language="VB.NET" Value="Protected Overridable Sub Dispose ()" />
<MemberSignature Language="F#" Value="abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit" Usage="urlRoutingModule.Dispose " />
<MemberSignature Language="C++ CLI" Value="protected:
 virtual void Dispose();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Disposes of the resources (other than memory) that are used by the module.</summary>
<remarks>To be added.</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
<Member MemberName="Init">
<MemberSignature Language="C#" Value="protected virtual void Init (System.Web.HttpApplication application);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void Init(class System.Web.HttpApplication application) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Web.Routing.UrlRoutingModule.Init(System.Web.HttpApplication)" />
<MemberSignature Language="VB.NET" Value="Protected Overridable Sub Init (application As HttpApplication)" />
<MemberSignature Language="F#" Value="abstract member Init : System.Web.HttpApplication -> unit
override this.Init : System.Web.HttpApplication -> unit" Usage="urlRoutingModule.Init application" />
<MemberSignature Language="C++ CLI" Value="protected:
 virtual void Init(System::Web::HttpApplication ^ application);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="application" Type="System.Web.HttpApplication" />
</Parameters>
<Docs>
<param name="application">An object that provides access to the methods, properties, and events common to all application objects in an ASP.NET application.</param>
<summary>Initializes a module and prepares it to handle requests.</summary>
<remarks>To be added.</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
<Member MemberName="PostMapRequestHandler">
<MemberSignature Language="C#" Value="public virtual void PostMapRequestHandler (System.Web.HttpContextBase context);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void PostMapRequestHandler(class System.Web.HttpContextBase context) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Web.Routing.UrlRoutingModule.PostMapRequestHandler(System.Web.HttpContextBase)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub PostMapRequestHandler (context As HttpContextBase)" />
<MemberSignature Language="F#" Value="abstract member PostMapRequestHandler : System.Web.HttpContextBase -> unit
override this.PostMapRequestHandler : System.Web.HttpContextBase -> unit" Usage="urlRoutingModule.PostMapRequestHandler context" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual void PostMapRequestHandler(System::Web::HttpContextBase ^ context);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.Obsolete("This method is obsolete. Override the Init method to use the PostMapRequestHandler event.")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This method is obsolete. Override the Init method to use the PostMapRequestHandler event.")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="context" Type="System.Web.HttpContextBase" />
</Parameters>
<Docs>
<param name="context">Encapsulates all HTTP-specific information about an individual HTTP request.</param>
<summary>Assigns the HTTP handler for the current request to the context.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Web.Routing.UrlRoutingModule.PostMapRequestHandler%2A> method is called when the <xref:System.Web.HttpApplication.PostMapRequestHandler> event is raised.
]]></format>
</remarks>
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.Web.Routing.RouteData.RouteHandler" /> property for the route is <see langword="null" />.</exception>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
<Member MemberName="PostResolveRequestCache">
<MemberSignature Language="C#" Value="public virtual void PostResolveRequestCache (System.Web.HttpContextBase context);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void PostResolveRequestCache(class System.Web.HttpContextBase context) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Web.Routing.UrlRoutingModule.PostResolveRequestCache(System.Web.HttpContextBase)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub PostResolveRequestCache (context As HttpContextBase)" />
<MemberSignature Language="F#" Value="abstract member PostResolveRequestCache : System.Web.HttpContextBase -> unit
override this.PostResolveRequestCache : System.Web.HttpContextBase -> unit" Usage="urlRoutingModule.PostResolveRequestCache context" />
<MemberSignature Language="C++ CLI" Value="public:
 virtual void PostResolveRequestCache(System::Web::HttpContextBase ^ context);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="context" Type="System.Web.HttpContextBase" />
</Parameters>
<Docs>
<param name="context">Encapsulates all HTTP-specific information about an individual HTTP request.</param>
<summary>Matches the HTTP request to a route, retrieves the handler for that route, and sets the handler as the HTTP handler for the current request.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The <xref:System.Web.Routing.UrlRoutingModule.PostResolveRequestCache%2A> method is called when the <xref:System.Web.HttpApplication.PostResolveRequestCache> event is raised.
]]></format>
</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
<Member MemberName="RouteCollection">
<MemberSignature Language="C#" Value="public System.Web.Routing.RouteCollection RouteCollection { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Web.Routing.RouteCollection RouteCollection" />
<MemberSignature Language="DocId" Value="P:System.Web.Routing.UrlRoutingModule.RouteCollection" />
<MemberSignature Language="VB.NET" Value="Public Property RouteCollection As RouteCollection" />
<MemberSignature Language="F#" Value="member this.RouteCollection : System.Web.Routing.RouteCollection with get, set" Usage="System.Web.Routing.UrlRoutingModule.RouteCollection" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Web::Routing::RouteCollection ^ RouteCollection { System::Web::Routing::RouteCollection ^ get(); void set(System::Web::Routing::RouteCollection ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.Routing.RouteCollection</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the collection of defined routes for the ASP.NET application.</summary>
<value>An object that contains the routes.</value>
<remarks>To be added.</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
<Member MemberName="System.Web.IHttpModule.Dispose">
<MemberSignature Language="C#" Value="void IHttpModule.Dispose ();" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Web.IHttpModule.Dispose() cil managed" />
<MemberSignature Language="DocId" Value="M:System.Web.Routing.UrlRoutingModule.System#Web#IHttpModule#Dispose" />
<MemberSignature Language="VB.NET" Value="Sub Dispose () Implements IHttpModule.Dispose" />
<MemberSignature Language="F#" Value="abstract member System.Web.IHttpModule.Dispose : unit -> unit
override this.System.Web.IHttpModule.Dispose : unit -> unit" Usage="urlRoutingModule.System.Web.IHttpModule.Dispose " />
<MemberSignature Language="C++ CLI" Value=" virtual void System.Web.IHttpModule.Dispose() = System::Web::IHttpModule::Dispose;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Web.IHttpModule.Dispose</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>For a description of this member, see <see cref="M:System.Web.IHttpModule.Dispose" />.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This member is an explicit interface member implementation. It can be used only when the <xref:System.Web.Routing.UrlRoutingModule> instance is cast to an <xref:System.Web.IHttpModule> interface.
]]></format>
</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
<Member MemberName="System.Web.IHttpModule.Init">
<MemberSignature Language="C#" Value="void IHttpModule.Init (System.Web.HttpApplication application);" />
<MemberSignature Language="ILAsm" Value=".method hidebysig newslot virtual instance void System.Web.IHttpModule.Init(class System.Web.HttpApplication application) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Web.Routing.UrlRoutingModule.System#Web#IHttpModule#Init(System.Web.HttpApplication)" />
<MemberSignature Language="VB.NET" Value="Sub Init (application As HttpApplication) Implements IHttpModule.Init" />
<MemberSignature Language="F#" Value="abstract member System.Web.IHttpModule.Init : System.Web.HttpApplication -> unit
override this.System.Web.IHttpModule.Init : System.Web.HttpApplication -> unit" Usage="urlRoutingModule.System.Web.IHttpModule.Init application" />
<MemberSignature Language="C++ CLI" Value=" virtual void System.Web.IHttpModule.Init(System::Web::HttpApplication ^ application) = System::Web::IHttpModule::Init;" />
<MemberType>Method</MemberType>
<Implements>
<InterfaceMember>M:System.Web.IHttpModule.Init(System.Web.HttpApplication)</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<AssemblyInfo>
<AssemblyName>System.Web.Routing</AssemblyName>
<AssemblyVersion>3.5.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="application" Type="System.Web.HttpApplication" />
</Parameters>
<Docs>
<param name="application">An object that provides access to the methods, properties, and events that are common to all application objects in an ASP.NET application.</param>
<summary>For a description of this member, see <see cref="M:System.Web.Routing.UrlRoutingModule.System#Web#IHttpModule#Init(System.Web.HttpApplication)" />.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This member is an explicit interface member implementation. It can be used only when the <xref:System.Web.Routing.UrlRoutingModule> instance is cast to an <xref:System.Web.IHttpModule> interface.
]]></format>
</remarks>
<related type="Article" href="https://learn.microsoft.com/previous-versions/aspnet/cc668201(v=vs.100)">ASP.NET Routing</related>
</Docs>
</Member>
</Members>
</Type>