webformsmvp 0.9.7.4.20100820

Sign up to get free protection for your applications and to get access to all the features.
Binary file
Binary file
@@ -0,0 +1,758 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>WebFormsMvp</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:WebFormsMvp.Binder.DefaultHttpContextAdapterFactory">
8
+ <summary>
9
+ Provides a default implementation of <see cref="T:WebFormsMvp.Binder.IHttpContextAdapterFactory"/> that
10
+ returns instances of <see cref="T:System.Web.HttpContextWrapper"/>.
11
+ </summary>
12
+ </member>
13
+ <member name="T:WebFormsMvp.Binder.IHttpContextAdapterFactory">
14
+ <summary>
15
+ Defines the methods of a factory class capable of creating adapters between
16
+ <see cref="T:System.Web.HttpContext"/> and <see cref="T:System.Web.HttpContextBase"/>.
17
+ </summary>
18
+ </member>
19
+ <member name="M:WebFormsMvp.Binder.IHttpContextAdapterFactory.Create(System.Web.HttpContext)">
20
+ <summary>
21
+ Creates an adapter for the specified <see cref="T:System.Web.HttpContext"/> instance.
22
+ </summary>
23
+ <param name="httpContext">The instance to create an adapter for.</param>
24
+ </member>
25
+ <member name="M:WebFormsMvp.Binder.DefaultHttpContextAdapterFactory.Create(System.Web.HttpContext)">
26
+ <summary>
27
+ Creates an adapter for the specified <see cref="T:System.Web.HttpContext"/> instance.
28
+ </summary>
29
+ <param name="httpContext">The instance to create an adapter for.</param>
30
+ </member>
31
+ <member name="T:WebFormsMvp.Binder.DefaultPresenterFactory">
32
+ <summary>
33
+ Provides a default implementation of <see cref="T:WebFormsMvp.Binder.IPresenterFactory"/>.
34
+ </summary>
35
+ </member>
36
+ <member name="T:WebFormsMvp.Binder.IPresenterFactory">
37
+ <summary>
38
+ Defines the methods of a factory class capable of creating presenters.
39
+ </summary>
40
+ </member>
41
+ <member name="M:WebFormsMvp.Binder.IPresenterFactory.Create(System.Type,System.Type,WebFormsMvp.IView)">
42
+ <summary>
43
+ Creates a new instance of the specific presenter type, for the specified
44
+ view type and instance.
45
+ </summary>
46
+ <param name="presenterType">The type of presenter to create.</param>
47
+ <param name="viewType">The type of the view as defined by the binding that matched.</param>
48
+ <param name="viewInstance">The view instance to bind this presenter to.</param>
49
+ <returns>An instantitated presenter.</returns>
50
+ </member>
51
+ <member name="M:WebFormsMvp.Binder.IPresenterFactory.Release(WebFormsMvp.IPresenter)">
52
+ <summary>
53
+ Releases the specified presenter from any of its lifestyle demands.
54
+ This method's activities are implementation specific - for example,
55
+ an IoC based factory would return the presenter to the container.
56
+ </summary>
57
+ <param name="presenter">The presenter to release.</param>
58
+ </member>
59
+ <member name="M:WebFormsMvp.Binder.DefaultPresenterFactory.Create(System.Type,System.Type,WebFormsMvp.IView)">
60
+ <summary>
61
+ Creates a new instance of the specific presenter type, for the specified
62
+ view type and instance.
63
+ </summary>
64
+ <param name="presenterType">The type of presenter to create.</param>
65
+ <param name="viewType">The type of the view as defined by the binding that matched.</param>
66
+ <param name="viewInstance">The view instance to bind this presenter to.</param>
67
+ <returns>An instantitated presenter.</returns>
68
+ </member>
69
+ <member name="M:WebFormsMvp.Binder.DefaultPresenterFactory.Release(WebFormsMvp.IPresenter)">
70
+ <summary>
71
+ Releases the specified presenter from any of its lifestyle demands.
72
+ </summary>
73
+ <param name="presenter">The presenter to release.</param>
74
+ </member>
75
+ <member name="T:WebFormsMvp.Binder.PresenterCreatedEventArgs">
76
+ <summary>
77
+ Provides data for the <see cref="E:WebFormsMvp.Binder.PresenterBinder.PresenterCreated"/> event.
78
+ </summary>
79
+ </member>
80
+ <member name="M:WebFormsMvp.Binder.PresenterCreatedEventArgs.#ctor(WebFormsMvp.IPresenter)">
81
+ <summary />
82
+ <param name="presenter">The presenter that was just created.</param>
83
+ </member>
84
+ <member name="P:WebFormsMvp.Binder.PresenterCreatedEventArgs.Presenter">
85
+ <summary>
86
+ Gets the presenter that was just created.
87
+ </summary>
88
+ </member>
89
+ <member name="T:WebFormsMvp.BindingMode">
90
+ <summary>
91
+ Defines the different modes through which presenters and views may be related.
92
+ </summary>
93
+ </member>
94
+ <member name="F:WebFormsMvp.BindingMode.Default">
95
+ <summary>
96
+ A separate presenter is created for each applicable view.
97
+ </summary>
98
+ </member>
99
+ <member name="F:WebFormsMvp.BindingMode.SharedPresenter">
100
+ <summary>
101
+ A single presenter instance is created and bound to all of the applicable views.
102
+ The presenter sees only a single view, however this is a composite view that
103
+ proxies calls to each of the underlying views. See:
104
+ http://wiki.webformsmvp.com/index.php?title=Feature_walkthroughs#Shared_Presenters
105
+ </summary>
106
+ </member>
107
+ <member name="T:WebFormsMvp.CompositeView`1">
108
+ <summary>
109
+ Provides a basic implementation of the <see cref="T:WebFormsMvp.ICompositeView"/> contract.
110
+ </summary>
111
+ </member>
112
+ <member name="T:WebFormsMvp.ICompositeView">
113
+ <summary>
114
+ Defines the contract that composite view wrappers must expose.
115
+ </summary>
116
+ </member>
117
+ <member name="T:WebFormsMvp.IView">
118
+ <summary>
119
+ Represents a class that is a view in a Web Forms Model-View-Presenter application.
120
+ </summary>
121
+ </member>
122
+ <member name="E:WebFormsMvp.IView.Load">
123
+ <summary>
124
+ Occurs at the discretion of the view. For <see cref="T:WebFormsMvp.Web.MvpUserControl"/>
125
+ implementations (the most commonly used), this is fired duing the ASP.NET
126
+ Load event.
127
+ </summary>
128
+ </member>
129
+ <member name="M:WebFormsMvp.ICompositeView.Add(WebFormsMvp.IView)">
130
+ <summary>
131
+ Adds the specified view instance to the composite view collection.
132
+ </summary>
133
+ </member>
134
+ <member name="M:WebFormsMvp.CompositeView`1.Add(WebFormsMvp.IView)">
135
+ <summary>
136
+ Adds the specified view instance to the composite view collection.
137
+ </summary>
138
+ </member>
139
+ <member name="P:WebFormsMvp.CompositeView`1.Views">
140
+ <summary>
141
+ Gets the list of individual views represented by this composite view.
142
+ </summary>
143
+ </member>
144
+ <member name="E:WebFormsMvp.CompositeView`1.Load">
145
+ <summary>
146
+ Occurs at the discretion of the view. For <see cref="T:WebFormsMvp.Web.MvpUserControl"/>
147
+ implementations (the most commonly used), this is fired duing the ASP.NET
148
+ Load event.
149
+ </summary>
150
+ </member>
151
+ <member name="T:WebFormsMvp.IAsyncTaskManager">
152
+ <summary>
153
+ Represents a class that can register async tasks to be completed for this page request.
154
+ </summary>
155
+ </member>
156
+ <member name="M:WebFormsMvp.IAsyncTaskManager.ExecuteRegisteredAsyncTasks">
157
+ <summary>
158
+ Starts the execution of an asynchronous task.
159
+ </summary>
160
+ </member>
161
+ <member name="M:WebFormsMvp.IAsyncTaskManager.RegisterAsyncTask(System.Web.BeginEventHandler,System.Web.EndEventHandler,System.Web.EndEventHandler,System.Object,System.Boolean)">
162
+ <summary>
163
+ Registers a new asynchronous task with the page.
164
+ </summary>
165
+ <param name="beginHandler">The handler to call when beginning an asynchronous task.</param>
166
+ <param name="endHandler">The handler to call when the task is completed successfully within the time-out period.</param>
167
+ <param name="timeout">The handler to call when the task is not completed successfully within the time-out period.</param>
168
+ <param name="state">The object that represents the state of the task.</param>
169
+ <param name="executeInParallel">The vlaue that indicates whether the task can be executed in parallel with other tasks.</param>
170
+ </member>
171
+ <member name="T:WebFormsMvp.IMessageBus">
172
+ <summary>
173
+ Defines the basic methods of a cross-presenter messaging bus.
174
+ </summary>
175
+ </member>
176
+ <member name="M:WebFormsMvp.IMessageBus.Publish``1(``0)">
177
+ <summary>
178
+ Publishes a message to the bus. Any existing subscriptions to this type,
179
+ or an assignable type such as a base class or an interface, will be notified
180
+ at this time.
181
+ </summary>
182
+ <typeparam name="TMessage">The type of the message to publish</typeparam>
183
+ <param name="message">The message to publish</param>
184
+ </member>
185
+ <member name="M:WebFormsMvp.IMessageBus.Subscribe``1(System.Action{``0})">
186
+ <summary>
187
+ Registers a subscription to messages of the specified type. Any previously
188
+ published messages that are valid for this subscription will be raised
189
+ at this time.
190
+ </summary>
191
+ <typeparam name="TMessage">The type of messages to subscribe to</typeparam>
192
+ <param name="messageReceivedCallback">A callback that will be invoked for each message received. This callback will be invoked once per message.</param>
193
+ </member>
194
+ <member name="M:WebFormsMvp.IMessageBus.Subscribe``1(System.Action{``0},System.Action)">
195
+ <summary>
196
+ Registers a subscription to messages of the specified type. Any previously
197
+ published messages that are valid for this subscription will be raised
198
+ at this time.
199
+ </summary>
200
+ <typeparam name="TMessage">The type of messages to subscribe to</typeparam>
201
+ <param name="messageReceivedCallback">A callback that will be invoked for each message received. This callback will be invoked once per message.</param>
202
+ <param name="neverReceivedCallback">A callback that will be invoked if no matching message is ever received. This callback will not be invoked more than once.</param>
203
+ </member>
204
+ <member name="T:WebFormsMvp.IMessageCoordinator">
205
+ <summary>
206
+ Defines the basic methods of a cross-presenter messaging coordinator.
207
+ </summary>
208
+ </member>
209
+ <member name="M:WebFormsMvp.IMessageCoordinator.Close">
210
+ <summary>
211
+ <para>
212
+ Closes the message bus, causing any subscribers that have not yet received
213
+ a message to have their "never received" callback fired.
214
+ </para>
215
+ <para>
216
+ After this method is called, any further calls to <see cref="M:WebFormsMvp.IMessageBus.Publish``1(``0)"/> or
217
+ <see cref="M:WebFormsMvp.IMessageBus.Subscribe``1(System.Action{``0})"/> will result in an
218
+ <see cref="T:System.InvalidOperationException"/>.
219
+ </para>
220
+ <para>
221
+ The <see cref="M:WebFormsMvp.IMessageCoordinator.Close"/> method may be called multiple times and must not
222
+ fail in this scenario.
223
+ </para>
224
+ </summary>
225
+ </member>
226
+ <member name="T:WebFormsMvp.IPresenter">
227
+ <summary>
228
+ Represents a class that is a presenter in a Web Forms Model-View-Presenter application.
229
+ </summary>
230
+ </member>
231
+ <member name="M:WebFormsMvp.IPresenter.ReleaseView">
232
+ <summary>
233
+ Releases the view.
234
+ </summary>
235
+ </member>
236
+ <member name="P:WebFormsMvp.IPresenter.HttpContext">
237
+ <summary>
238
+ Gets or sets HTTP-specific information about an individual HTTP request.
239
+ </summary>
240
+ </member>
241
+ <member name="P:WebFormsMvp.IPresenter.Request">
242
+ <summary>
243
+ Gets the <see cref="T:System.Web.HttpRequestBase"/> object for the current HTTP request.
244
+ </summary>
245
+ </member>
246
+ <member name="P:WebFormsMvp.IPresenter.Response">
247
+ <summary>
248
+ Gets the <see cref="T:System.Web.HttpResponseBase"/> object for the current HTTP request.
249
+ </summary>
250
+ </member>
251
+ <member name="P:WebFormsMvp.IPresenter.Server">
252
+ <summary>
253
+ Gets the <see cref="T:System.Web.HttpServerUtilityBase"/> object that provides methods that are used during Web request processing.
254
+ </summary>
255
+ </member>
256
+ <member name="P:WebFormsMvp.IPresenter.Cache">
257
+ <summary>
258
+ Gets the cache object for the current web application domain.
259
+ </summary>
260
+ </member>
261
+ <member name="P:WebFormsMvp.IPresenter.RouteData">
262
+ <summary>
263
+ Gets the route data for the current request.
264
+ </summary>
265
+ </member>
266
+ <member name="P:WebFormsMvp.IPresenter.AsyncManager">
267
+ <summary>
268
+ Gets or sets the async task manager.
269
+ </summary>
270
+ </member>
271
+ <member name="P:WebFormsMvp.IPresenter.Messages">
272
+ <summary>
273
+ Gets or sets the message bus used for cross presenter messaging.
274
+ </summary>
275
+ </member>
276
+ <member name="T:WebFormsMvp.IPresenter`1">
277
+ <summary>
278
+ Represents a class that is a presenter with a strongly typed view in a Web Forms Model-View-Presenter application.
279
+ </summary>
280
+ <typeparam name="TView">The type of the view.</typeparam>
281
+ </member>
282
+ <member name="P:WebFormsMvp.IPresenter`1.View">
283
+ <summary>
284
+ Gets the view instance that this presenter is bound to.
285
+ </summary>
286
+ </member>
287
+ <member name="T:WebFormsMvp.ITraceContext">
288
+ <summary>
289
+ A bespoke substitute for the lack of System.Web.Abstractions.TraceContextBase.
290
+ Lazy Microsoft.
291
+ </summary>
292
+ </member>
293
+ <member name="M:WebFormsMvp.ITraceContext.Write(System.String,System.String)">
294
+ <summary>
295
+ Writes trace information to the trace log, including a message and any user-defined
296
+ categories.
297
+ </summary>
298
+ <param name="category">The trace category that receives the message.</param>
299
+ <param name="message">The trace message to write to the log.</param>
300
+ </member>
301
+ <member name="T:WebFormsMvp.IView`1">
302
+ <summary>
303
+ Represents a class that is a view with a strongly typed view model in a Web Forms Model-View-Presenter application.
304
+ </summary>
305
+ <typeparam name="TModel">The type of the model.</typeparam>
306
+ </member>
307
+ <member name="P:WebFormsMvp.IView`1.Model">
308
+ <summary>
309
+ Gets the model instance. The default presenter base class
310
+ (<see cref="T:WebFormsMvp.Presenter`1"/>) initializes this automatically.
311
+ </summary>
312
+ </member>
313
+ <member name="T:WebFormsMvp.MessageCoordinator">
314
+ <summary>
315
+ A default implementation for cross presenter messaging.
316
+ </summary>
317
+ </member>
318
+ <member name="M:WebFormsMvp.MessageCoordinator.#ctor">
319
+ <summary>
320
+ Initializes a new instance of the <see cref="T:WebFormsMvp.MessageCoordinator"/> class.
321
+ </summary>
322
+ </member>
323
+ <member name="M:WebFormsMvp.MessageCoordinator.Publish``1(``0)">
324
+ <summary>
325
+ Publishes a message to the bus. Any existing subscriptions to this type,
326
+ or an assignable type such as a base class or an interface, will be notified
327
+ at this time.
328
+ </summary>
329
+ <typeparam name="TMessage">The type of the message to publish</typeparam>
330
+ <param name="message">The message to publish</param>
331
+ </member>
332
+ <member name="M:WebFormsMvp.MessageCoordinator.Subscribe``1(System.Action{``0})">
333
+ <summary>
334
+ Registers a subscription to messages of the specified type. Any previously
335
+ published messages that are valid for this subscription will be raised
336
+ at this time.
337
+ </summary>
338
+ <typeparam name="TMessage">The type of messages to subscribe to</typeparam>
339
+ <param name="messageReceivedCallback">A callback that will be invoked for each message received. This callback will be invoked once per message.</param>
340
+ </member>
341
+ <member name="M:WebFormsMvp.MessageCoordinator.Subscribe``1(System.Action{``0},System.Action)">
342
+ <summary>
343
+ Registers a subscription to messages of the specified type. Any previously
344
+ published messages that are valid for this subscription will be raised
345
+ at this time.
346
+ </summary>
347
+ <typeparam name="TMessage">The type of messages to subscribe to</typeparam>
348
+ <param name="messageReceivedCallback">A callback that will be invoked for each message received. This callback will be invoked once per message.</param>
349
+ <param name="neverReceivedCallback">A callback that will be invoked if no matching message is ever received. This callback will not be invoked more than once.</param>
350
+ </member>
351
+ <member name="M:WebFormsMvp.MessageCoordinator.Close">
352
+ <summary>
353
+ <para>
354
+ Closes the message bus, causing any subscribers that have not yet received
355
+ a message to have their "never received" callback fired.
356
+ </para>
357
+ <para>
358
+ After this method is called, any further calls to <see cref="M:WebFormsMvp.IMessageBus.Publish``1(``0)"/> or
359
+ <see cref="M:WebFormsMvp.IMessageBus.Subscribe``1(System.Action{``0})"/> will result in an
360
+ <see cref="T:System.InvalidOperationException"/>.
361
+ </para>
362
+ <para>
363
+ The <see cref="M:WebFormsMvp.IMessageCoordinator.Close"/> method may be called multiple times and must not
364
+ fail in this scenario.
365
+ </para>
366
+ </summary>
367
+ </member>
368
+ <member name="T:WebFormsMvp.TraceContextAdapter">
369
+ <summary>
370
+ A bespoke substitute for the lack of System.Web.Abstractions.TraceContextWrapper.
371
+ Lazy Microsoft.
372
+ </summary>
373
+ </member>
374
+ <member name="M:WebFormsMvp.TraceContextAdapter.Write(System.String,System.String)">
375
+ <summary>
376
+ Writes trace information to the trace log, including a message and any user-defined
377
+ categories.
378
+ </summary>
379
+ <param name="category">The trace category that receives the message.</param>
380
+ <param name="message">The trace message to write to the log.</param>
381
+ </member>
382
+ <member name="T:WebFormsMvp.Web.MvpHttpHandler">
383
+ <summary>
384
+ Provides the base implementation for a custom HTTP handler that uses the
385
+ Web Forms Model-View-Presenter library.
386
+ </summary>
387
+ </member>
388
+ <member name="M:WebFormsMvp.Web.MvpHttpHandler.ProcessRequest(System.Web.HttpContext)">
389
+ <summary />
390
+ </member>
391
+ <member name="M:WebFormsMvp.Web.MvpHttpHandler.OnLoad">
392
+ <summary>
393
+ Raises the <see cref="E:WebFormsMvp.Web.MvpHttpHandler.Load"/> event.
394
+ </summary>
395
+ </member>
396
+ <member name="P:WebFormsMvp.Web.MvpHttpHandler.IsReusable">
397
+ <summary />
398
+ </member>
399
+ <member name="E:WebFormsMvp.Web.MvpHttpHandler.Load">
400
+ <summary>
401
+ Occurs during the <see cref="M:WebFormsMvp.Web.MvpHttpHandler.ProcessRequest(System.Web.HttpContext)"/> method.
402
+ </summary>
403
+ </member>
404
+ <member name="T:WebFormsMvp.Web.MvpPage`1">
405
+ <summary>
406
+ Represents a page that is a view with a strongly typed model in a Web Forms Model-View-Presenter application.
407
+ </summary>
408
+ <typeparam name="TModel">The type of the view model.</typeparam>
409
+ </member>
410
+ <member name="T:WebFormsMvp.Web.MvpPage">
411
+ <summary>
412
+ Represents a page that is a view in a Web Forms Model-View-Presenter application.
413
+ </summary>
414
+ </member>
415
+ <member name="M:WebFormsMvp.Web.MvpPage.#ctor">
416
+ <summary />
417
+ </member>
418
+ <member name="M:WebFormsMvp.Web.MvpPage.OnInit(System.EventArgs)">
419
+ <summary>
420
+ Raises the <see cref="E:System.Web.UI.Control.Init"/> event to initialize the page.
421
+ </summary>
422
+ <param name="e">An <see cref="T:System.EventArgs"/> that contains the event data.</param>
423
+ </member>
424
+ <member name="P:WebFormsMvp.Web.MvpPage.AutoDataBind">
425
+ <summary>
426
+ Gets a value indicating whether the page should automatically data bind itself at the Page.PreRenderComplete event.
427
+ </summary>
428
+ <value><c>true</c> if auto data binding is enabled (default); otherwise, <c>false</c>.</value>
429
+ </member>
430
+ <member name="P:WebFormsMvp.Web.MvpPage`1.Model">
431
+ <summary>
432
+ Gets or sets the view model.
433
+ </summary>
434
+ <value>The view model.</value>
435
+ </member>
436
+ <member name="T:WebFormsMvp.Web.PageAsyncTaskManagerWrapper">
437
+ <summary>
438
+ Represents a class that wraps the page's async task methods
439
+ </summary>
440
+ </member>
441
+ <member name="M:WebFormsMvp.Web.PageAsyncTaskManagerWrapper.#ctor(System.Web.UI.Page)">
442
+ <summary />
443
+ </member>
444
+ <member name="M:WebFormsMvp.Web.PageAsyncTaskManagerWrapper.ExecuteRegisteredAsyncTasks">
445
+ <summary>
446
+ Starts the execution of an asynchronous task.
447
+ </summary>
448
+ </member>
449
+ <member name="M:WebFormsMvp.Web.PageAsyncTaskManagerWrapper.RegisterAsyncTask(System.Web.BeginEventHandler,System.Web.EndEventHandler,System.Web.EndEventHandler,System.Object,System.Boolean)">
450
+ <summary>
451
+ Registers a new asynchronous task with the page.
452
+ </summary>
453
+ <param name="beginHandler">The handler to call when beginning an asynchronous task.</param>
454
+ <param name="endHandler">The handler to call when the task is completed successfully within the time-out period.</param>
455
+ <param name="timeout">The handler to call when the task is not completed successfully within the time-out period.</param>
456
+ <param name="state">The object that represents the state of the task.</param>
457
+ <param name="executeInParallel">The vlaue that indicates whether the task can be executed in parallel with other tasks.</param>
458
+ </member>
459
+ <member name="T:WebFormsMvp.Presenter`1">
460
+ <summary>
461
+ Represents a presenter in a Web Forms Model-View-Presenter application.
462
+ </summary>
463
+ <typeparam name="TView">The type of the view.</typeparam>
464
+ </member>
465
+ <member name="M:WebFormsMvp.Presenter`1.#ctor(`0)">
466
+ <summary>
467
+ Initializes a new instance of the <see cref="T:WebFormsMvp.Presenter`1"/> class.
468
+ </summary>
469
+ </member>
470
+ <member name="M:WebFormsMvp.Presenter`1.ReleaseView">
471
+ <summary>
472
+ Releases the view.
473
+ </summary>
474
+ </member>
475
+ <member name="P:WebFormsMvp.Presenter`1.View">
476
+ <summary>
477
+ Gets the view instance that this presenter is bound to.
478
+ </summary>
479
+ </member>
480
+ <member name="P:WebFormsMvp.Presenter`1.HttpContext">
481
+ <summary>
482
+ Gets or sets HTTP-specific information about an individual HTTP request.
483
+ </summary>
484
+ </member>
485
+ <member name="P:WebFormsMvp.Presenter`1.Request">
486
+ <summary>
487
+ Gets the <see cref="T:System.Web.HttpRequestBase"/> object for the current HTTP request.
488
+ </summary>
489
+ </member>
490
+ <member name="P:WebFormsMvp.Presenter`1.Response">
491
+ <summary>
492
+ Gets the <see cref="T:System.Web.HttpResponseBase"/> object for the current HTTP request.
493
+ </summary>
494
+ </member>
495
+ <member name="P:WebFormsMvp.Presenter`1.Server">
496
+ <summary>
497
+ Gets the <see cref="T:System.Web.HttpServerUtilityBase"/> object that provides methods that are used during Web request processing.
498
+ </summary>
499
+ </member>
500
+ <member name="P:WebFormsMvp.Presenter`1.Cache">
501
+ <summary>
502
+ Gets the cache object for the current web application domain.
503
+ </summary>
504
+ </member>
505
+ <member name="P:WebFormsMvp.Presenter`1.RouteData">
506
+ <summary>
507
+ Gets the route data for the current request.
508
+ </summary>
509
+ </member>
510
+ <member name="P:WebFormsMvp.Presenter`1.AsyncManager">
511
+ <summary>
512
+ Gets or sets the async task manager.
513
+ </summary>
514
+ </member>
515
+ <member name="P:WebFormsMvp.Presenter`1.Messages">
516
+ <summary>
517
+ Gets or sets the message bus used for cross presenter messaging.
518
+ </summary>
519
+ </member>
520
+ <member name="T:WebFormsMvp.Web.PageDataSource">
521
+ <summary>
522
+ Represents an ObjectDataSource that binds to its hosting page or user control
523
+ </summary>
524
+ </member>
525
+ <member name="M:WebFormsMvp.Web.PageDataSource.#ctor">
526
+ <summary />
527
+ </member>
528
+ <member name="M:WebFormsMvp.Web.PageDataSource.#ctor(System.String,System.String)">
529
+ <summary />
530
+ </member>
531
+ <member name="M:WebFormsMvp.Web.PageDataSource.OnInit(System.EventArgs)">
532
+ <summary>
533
+ Raises the <see cref="E:System.Web.UI.Control.Init"/> event.
534
+ </summary>
535
+ <param name="e">An <see cref="T:System.EventArgs"/> object that contains the event data.</param>
536
+ </member>
537
+ <member name="M:WebFormsMvp.Web.PageDataSource.OnObjectCreating(System.Object,System.Web.UI.WebControls.ObjectDataSourceEventArgs)">
538
+ <summary />
539
+ </member>
540
+ <member name="M:WebFormsMvp.Web.PageDataSource.OnObjectDisposing(System.Object,System.Web.UI.WebControls.ObjectDataSourceDisposingEventArgs)">
541
+ <summary />
542
+ </member>
543
+ <member name="M:WebFormsMvp.Web.PageDataSource.FindParentHost(System.Web.UI.Control)">
544
+ <summary>
545
+ Walks the control tree to find the hosting parent page or user control
546
+ </summary>
547
+ <param name="ctl">The control to start the tree walk at</param>
548
+ </member>
549
+ <member name="P:WebFormsMvp.Web.PageDataSource.ParentHost">
550
+ <summary />
551
+ </member>
552
+ <member name="T:WebFormsMvp.Binder.PresenterBinder">
553
+ <summary>
554
+ Handles the creation and binding of presenters based on the decoration of
555
+ <see cref="T:WebFormsMvp.PresenterBindingAttribute"/> attributes on a host class, such as page.
556
+ </summary>
557
+ </member>
558
+ <member name="M:WebFormsMvp.Binder.PresenterBinder.#ctor(System.Object,System.Web.HttpContext)">
559
+ <summary>
560
+ Initializes a new instance of the <see cref="T:WebFormsMvp.Binder.PresenterBinder"/> class.
561
+ </summary>
562
+ <param name="host">The host.</param>
563
+ <param name="httpContext">The owning HTTP context.</param>
564
+ </member>
565
+ <member name="M:WebFormsMvp.Binder.PresenterBinder.#ctor(System.Collections.Generic.IEnumerable{System.Object},System.Web.HttpContext)">
566
+ <summary>
567
+ Initializes a new instance of the <see cref="T:WebFormsMvp.Binder.PresenterBinder"/> class.
568
+ </summary>
569
+ <param name="hosts">The array of hosts, useful in scenarios like ASP.NET master pages.</param>
570
+ <param name="httpContext">The owning HTTP context.</param>
571
+ </member>
572
+ <member name="M:WebFormsMvp.Binder.PresenterBinder.#ctor(System.Collections.Generic.IEnumerable{System.Object},System.Web.HttpContextBase,WebFormsMvp.ITraceContext)">
573
+ <summary>
574
+ Initializes a new instance of the <see cref="T:WebFormsMvp.Binder.PresenterBinder"/> class.
575
+ </summary>
576
+ <param name="hosts">The array of hosts, useful in scenarios like ASP.NET master pages.</param>
577
+ <param name="httpContext">The owning HTTP context.</param>
578
+ <param name="traceContext">The tracing context.</param>
579
+ </member>
580
+ <member name="M:WebFormsMvp.Binder.PresenterBinder.RegisterView(WebFormsMvp.IView)">
581
+ <summary>
582
+ Registers a view instance as being a candidate for binding. If
583
+ <see cref="M:WebFormsMvp.Binder.PresenterBinder.PerformBinding"/> has not been called, the view will
584
+ be queued until that time. If <see cref="M:WebFormsMvp.Binder.PresenterBinder.PerformBinding"/> has
585
+ already been called, binding is attempted instantly.
586
+ </summary>
587
+ </member>
588
+ <member name="M:WebFormsMvp.Binder.PresenterBinder.PerformBinding">
589
+ <summary>
590
+ Attempts to bind any already registered views.
591
+ </summary>
592
+ </member>
593
+ <member name="M:WebFormsMvp.Binder.PresenterBinder.Release">
594
+ <summary>
595
+ Closes the message bus, releases each of the views from the
596
+ presenters then releases each of the presenters from the factory
597
+ (useful in IoC scenarios).
598
+ </summary>
599
+ </member>
600
+ <member name="P:WebFormsMvp.Binder.PresenterBinder.Factory">
601
+ <summary>
602
+ Gets or sets the factory that the binder will use to create
603
+ new presenter instances. This is pre-initialized to a
604
+ default implementation but can be overriden if desired.
605
+ This property can only be set once.
606
+ </summary>
607
+ <exception cref="T:System.ArgumentNullException">Thrown if a null value is passed to the setter.</exception>
608
+ <exception cref="T:System.InvalidOperationException">Thrown if the property is being set for a second time.</exception>
609
+ </member>
610
+ <member name="P:WebFormsMvp.Binder.PresenterBinder.HttpContextAdapterFactory">
611
+ <summary>
612
+ Gets or sets the factory that the binder will use to build adapters for concrete <see cref="T:System.Web.HttpContext"/> instances.
613
+ This is pre-initialized to a default implementation but can be overriden if desired.
614
+ </summary>
615
+ <exception cref="T:System.ArgumentNullException">Thrown if a null value is passed to the setter.</exception>
616
+ </member>
617
+ <member name="E:WebFormsMvp.Binder.PresenterBinder.PresenterCreated">
618
+ <summary>
619
+ Occurs when the binder creates a new presenter instance. Useful for
620
+ populating extra information into presenters.
621
+ </summary>
622
+ </member>
623
+ <member name="P:WebFormsMvp.Binder.PresenterBinder.MessageCoordinator">
624
+ <summary>
625
+ Returns the message coordinator instance that is being shared with
626
+ each of the presenters.
627
+ </summary>
628
+ </member>
629
+ <member name="T:WebFormsMvp.PresenterBindingAttribute">
630
+ <summary>
631
+ Used to define bindings between presenters and a views.
632
+ </summary>
633
+ </member>
634
+ <member name="M:WebFormsMvp.PresenterBindingAttribute.#ctor(System.Type)">
635
+ <summary />
636
+ </member>
637
+ <member name="P:WebFormsMvp.PresenterBindingAttribute.PresenterType">
638
+ <summary />
639
+ </member>
640
+ <member name="P:WebFormsMvp.PresenterBindingAttribute.ViewType">
641
+ <summary />
642
+ </member>
643
+ <member name="P:WebFormsMvp.PresenterBindingAttribute.BindingMode">
644
+ <summary />
645
+ </member>
646
+ <member name="T:WebFormsMvp.Web.MvpUserControl">
647
+ <summary>
648
+ Represents a user control that is a view in a Web Forms Model-View-Presenter application
649
+ </summary>
650
+ </member>
651
+ <member name="M:WebFormsMvp.Web.MvpUserControl.#ctor">
652
+ <summary />
653
+ </member>
654
+ <member name="M:WebFormsMvp.Web.MvpUserControl.OnInit(System.EventArgs)">
655
+ <summary>
656
+ Raises the <see cref="E:System.Web.UI.Control.Init"/> event.
657
+ </summary>
658
+ <param name="e">An <see cref="T:System.EventArgs"/> object that contains the event data.</param>
659
+ </member>
660
+ <member name="M:WebFormsMvp.Web.MvpUserControl.DataItem``1">
661
+ <summary>
662
+ Gets the data item at the top of the data-binding context stack as <typeparamref name="T"/> otherwise returns a new instance of <typeparamref name="T"/>.
663
+ </summary>
664
+ <typeparam name="T">The type to get the data item as</typeparam>
665
+ <returns>The data item as type <typeparamref name="T"/>, or a new instance of <typeparamref name="T"/> if the data item is null.</returns>
666
+ </member>
667
+ <member name="M:WebFormsMvp.Web.MvpUserControl.DataValue``1">
668
+ <summary>
669
+ Gets the data item at the top of the data-binding context stack casted to T.
670
+ </summary>
671
+ <typeparam name="T">The type to cast the data item to</typeparam>
672
+ <returns>The data item cast to type T.</returns>
673
+ </member>
674
+ <member name="M:WebFormsMvp.Web.MvpUserControl.DataValue``1(System.String)">
675
+ <summary>
676
+ Gets the data item at the top of the data-binding context stack casted to T and formatted using the given format string.
677
+ </summary>
678
+ <typeparam name="T">The type to cast the data item to</typeparam>
679
+ <param name="format">The format string.</param>
680
+ <returns>The formatted data item value.</returns>
681
+ </member>
682
+ <member name="P:WebFormsMvp.Web.MvpUserControl.AutoDataBind">
683
+ <summary>
684
+ Gets a value indicating whether the user control should automatically data bind itself at the Page.PreRenderComplete event.
685
+ </summary>
686
+ <value><c>true</c> if auto data binding is enabled (default); otherwise, <c>false</c>.</value>
687
+ </member>
688
+ <member name="T:WebFormsMvp.Web.MvpUserControl`1">
689
+ <summary>
690
+ Represents a user control that is a view with a strongly typed model in a Web Forms Model-View-Presenter application
691
+ </summary>
692
+ <typeparam name="TModel">The type of the view model.</typeparam>
693
+ </member>
694
+ <member name="P:WebFormsMvp.Web.MvpUserControl`1.Model">
695
+ <summary>
696
+ Gets or sets the view model.
697
+ </summary>
698
+ <value>The view model.</value>
699
+ </member>
700
+ <member name="T:WebFormsMvp.Web.MvpWebService">
701
+ <summary>
702
+ Represents a web service that is a self hosting view in a Web Forms Model-View-Presenter application
703
+ </summary>
704
+ </member>
705
+ <member name="M:WebFormsMvp.Web.MvpWebService.#ctor">
706
+ <summary />
707
+ </member>
708
+ <member name="M:WebFormsMvp.Web.MvpWebService.OnLoad">
709
+ <summary>
710
+ Raises the <see cref="E:WebFormsMvp.Web.MvpWebService.Load"/> event.
711
+ </summary>
712
+ </member>
713
+ <member name="M:WebFormsMvp.Web.MvpWebService.ReleaseView">
714
+ <summary>
715
+ Releases the view from the presenter.
716
+ </summary>
717
+ </member>
718
+ <member name="E:WebFormsMvp.Web.MvpWebService.Load">
719
+ <summary>
720
+ Occurs at the discretion of the view.
721
+ </summary>
722
+ </member>
723
+ <member name="T:WebFormsMvp.Web.PageViewHost">
724
+ <summary>
725
+ Provides lifecycle management and synchronization services required for efficiently
726
+ hosting multiple WebFormsMvp based controls on an ASP.NET page.
727
+ </summary>
728
+ </member>
729
+ <member name="M:WebFormsMvp.Web.PageViewHost.#ctor(System.Web.UI.Page,System.Web.HttpContext)">
730
+ <summary>
731
+ Initializes a new instance of the <see cref="T:WebFormsMvp.Web.PageViewHost"/> class.
732
+ </summary>
733
+ <param name="page">The page instance that this view host will be responsible for.</param>
734
+ <param name="httpContext">The owning HTTP context.</param>
735
+ </member>
736
+ <member name="M:WebFormsMvp.Web.PageViewHost.Register``1(``0,System.Web.HttpContext)">
737
+ <summary>
738
+ Registers the specified control into the view host for the current page.
739
+ If no view host has yet been initialized for the current page instance, one will be created.
740
+ </summary>
741
+ <param name="control">The control instance to register.</param>
742
+ <param name="httpContext">The owning HTTP context.</param>
743
+ <exception cref="T:System.ArgumentNullException">The control argument was null.</exception>
744
+ <exception cref="T:System.InvalidOperationException">The control is not in a valid state for registration. Controls can only be registered once they have been added to the live control tree. The best place to register them is within the control's <see cref="E:System.Web.UI.Control.Init"/> event.</exception>
745
+ </member>
746
+ <member name="M:WebFormsMvp.Web.PageViewHost.Register``1(``0,System.Web.HttpContext,System.Boolean)">
747
+ <summary>
748
+ Registers the specified control into the view host for the current page.
749
+ If no view host has yet been initialized for the current page instance, one will be created.
750
+ </summary>
751
+ <param name="control">The control instance to register.</param>
752
+ <param name="httpContext">The owning HTTP context.</param>
753
+ <param name="enableAutomaticDataBinding">Specifies whether the control's <see cref="M:System.Web.UI.Control.DataBind"/> method should be called when the page's <see cref="E:System.Web.UI.Page.PreRenderComplete"/> event is fired.</param>
754
+ <exception cref="T:System.ArgumentNullException">The control argument was null.</exception>
755
+ <exception cref="T:System.InvalidOperationException">The control is not in a valid state for registration. Controls can only be registered once they have been added to the live control tree. The best place to register them is within the control's <see cref="E:System.Web.UI.Control.Init"/> event.</exception>
756
+ </member>
757
+ </members>
758
+ </doc>
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: webformsmvp
3
+ version: !ruby/object:Gem::Version
4
+ hash: 40201647
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 9
9
+ - 7
10
+ - 4
11
+ - 20100820
12
+ version: 0.9.7.4.20100820
13
+ platform: ruby
14
+ authors:
15
+ - Tatham Oddie
16
+ - Damian Edwards
17
+ autorequire:
18
+ bindir: bin
19
+ cert_chain: []
20
+
21
+ date: 2010-08-20 00:00:00 -06:00
22
+ default_executable:
23
+ dependencies: []
24
+
25
+ description: "\t\tWeb Forms MVP is a simple Model-View-Presenter framework for ASP.NET Web \n\
26
+ \t\tForms to aid in building testable and maintainable ASP.NET projects. \n\
27
+ \t\tFeatures support for normal server controls, data-binding and async pages.\n"
28
+ email: webformsmvp@googlegroups.com
29
+ executables: []
30
+
31
+ extensions: []
32
+
33
+ extra_rdoc_files: []
34
+
35
+ files:
36
+ - lib/WebFormsMvp.dll
37
+ - lib/WebFormsMvp.pdb
38
+ - lib/WebFormsMvp.xml
39
+ has_rdoc: true
40
+ homepage: http://webformsmvp.com/
41
+ licenses: []
42
+
43
+ post_install_message:
44
+ rdoc_options: []
45
+
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ hash: 3
54
+ segments:
55
+ - 0
56
+ version: "0"
57
+ required_rubygems_version: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ hash: 3
63
+ segments:
64
+ - 0
65
+ version: "0"
66
+ requirements: []
67
+
68
+ rubyforge_project: webformsmvp
69
+ rubygems_version: 1.3.7
70
+ signing_key:
71
+ specification_version: 3
72
+ summary: Web Forms MVP - A simple Model-View-Presenter framework for ASP.NET Web Forms
73
+ test_files: []
74
+