Statistics
| Branch: | Revision:

root / trunk / packages / Caliburn.Micro.1.5.1 / lib / wp8 / Caliburn.Micro.Extensions.xml @ 99882980

History | View | Annotate | Download (42.9 kB)

1
<?xml version="1.0"?>
2
<doc>
3
    <assembly>
4
        <name>Caliburn.Micro.Extensions</name>
5
    </assembly>
6
    <members>
7
        <member name="T:Caliburn.Micro.AppSettingsStorageMechanism">
8
            <summary>
9
            Stores data in the application settings.
10
            </summary>
11
        </member>
12
        <member name="T:Caliburn.Micro.IStorageMechanism">
13
            <summary>
14
            Implemented by classes that know how to store data.
15
            </summary>
16
        </member>
17
        <member name="M:Caliburn.Micro.IStorageMechanism.Supports(Caliburn.Micro.StorageMode)">
18
            <summary>
19
            Indicates what storage modes this mechanism provides.
20
            </summary>
21
            <param name="mode">The storage mode to check.</param>
22
            <returns>Whether or not it is supported.</returns>
23
        </member>
24
        <member name="M:Caliburn.Micro.IStorageMechanism.BeginStoring">
25
            <summary>
26
            Begins the storage transaction.
27
            </summary>
28
        </member>
29
        <member name="M:Caliburn.Micro.IStorageMechanism.Store(System.String,System.Object)">
30
            <summary>
31
            Stores the value with the specified key.
32
            </summary>
33
            <param name="key">The key.</param>
34
            <param name="data">The data.</param>
35
        </member>
36
        <member name="M:Caliburn.Micro.IStorageMechanism.EndStoring">
37
            <summary>
38
            Ends the storage transaction.
39
            </summary>
40
        </member>
41
        <member name="M:Caliburn.Micro.IStorageMechanism.TryGet(System.String,System.Object@)">
42
            <summary>
43
            Tries to get the data previously stored with the specified key.
44
            </summary>
45
            <param name="key">The key.</param>
46
            <param name="value">The value.</param>
47
            <returns>true if found; false otherwise</returns>
48
        </member>
49
        <member name="M:Caliburn.Micro.IStorageMechanism.Delete(System.String)">
50
            <summary>
51
            Deletes the data with the specified key.
52
            </summary>
53
            <param name="key">The key.</param>
54
        </member>
55
        <member name="M:Caliburn.Micro.IStorageMechanism.ClearLastSession">
56
            <summary>
57
            Clears the data stored in the last storage transaction.
58
            </summary>
59
        </member>
60
        <member name="M:Caliburn.Micro.IStorageMechanism.RegisterSingleton(System.Type,System.String,System.Type)">
61
            <summary>
62
            Registers service with the storage mechanism as a singleton.
63
            </summary>
64
            <param name="service">The service.</param>
65
            <param name="key">The key.</param>
66
            <param name="implementation">The implementation.</param>
67
        </member>
68
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.#ctor(Caliburn.Micro.IPhoneContainer)">
69
            <summary>
70
            Initializes a new instance of the <see cref="T:Caliburn.Micro.AppSettingsStorageMechanism"/> class.
71
            </summary>
72
            <param name="container">The container.</param>
73
        </member>
74
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.Supports(Caliburn.Micro.StorageMode)">
75
            <summary>
76
            Indicates what storage modes this mechanism provides.
77
            </summary>
78
            <param name="mode">The storage mode to check.</param>
79
            <returns>
80
            Whether or not it is supported.
81
            </returns>
82
        </member>
83
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.BeginStoring">
84
            <summary>
85
            Begins the storage transaction.
86
            </summary>
87
        </member>
88
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.Store(System.String,System.Object)">
89
            <summary>
90
            Stores the value with the specified key.
91
            </summary>
92
            <param name="key">The key.</param>
93
            <param name="data">The data.</param>
94
        </member>
95
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.EndStoring">
96
            <summary>
97
            Ends the storage transaction.
98
            </summary>
99
        </member>
100
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.TryGet(System.String,System.Object@)">
101
            <summary>
102
            Tries to get the data previously stored with the specified key.
103
            </summary>
104
            <param name="key">The key.</param>
105
            <param name="value">The value.</param>
106
            <returns>true if found; false otherwise</returns>
107
        </member>
108
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.Delete(System.String)">
109
            <summary>
110
            Deletes the data with the specified key.
111
            </summary>
112
            <param name="key">The key.</param>
113
        </member>
114
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.ClearLastSession">
115
            <summary>
116
            Clears the data stored in the last storage transaction.
117
            </summary>
118
        </member>
119
        <member name="M:Caliburn.Micro.AppSettingsStorageMechanism.RegisterSingleton(System.Type,System.String,System.Type)">
120
            <summary>
121
            Registers service with the storage mechanism as a singleton.
122
            </summary>
123
            <param name="service">The service.</param>
124
            <param name="key">The key.</param>
125
            <param name="implementation">The implementation.</param>
126
        </member>
127
        <member name="T:Caliburn.Micro.ContainerExtensions">
128
            <summary>
129
            Extension methods for the <see cref="T:Caliburn.Micro.SimpleContainer"/>.
130
            </summary>
131
        </member>
132
        <member name="M:Caliburn.Micro.ContainerExtensions.Singleton``1(Caliburn.Micro.SimpleContainer)">
133
            <summary>
134
            Registers a singleton.
135
            </summary>
136
            <typeparam name="TImplementation">The type of the implementation.</typeparam>
137
            <param name="container">The container.</param>
138
            <returns>The container.</returns>
139
        </member>
140
        <member name="M:Caliburn.Micro.ContainerExtensions.Singleton``2(Caliburn.Micro.SimpleContainer)">
141
            <summary>
142
            Registers a singleton.
143
            </summary>
144
            <typeparam name="TService">The type of the service.</typeparam>
145
            <typeparam name="TImplementation">The type of the implementation.</typeparam>
146
            <param name="container">The container.</param>
147
            <returns>The container.</returns>
148
        </member>
149
        <member name="M:Caliburn.Micro.ContainerExtensions.PerRequest``2(Caliburn.Micro.SimpleContainer)">
150
            <summary>
151
            Registers an service to be created on each request.
152
            </summary>
153
            <typeparam name="TService">The type of the service.</typeparam>
154
            <typeparam name="TImplementation">The type of the implementation.</typeparam>
155
            <param name="container">The container.</param>
156
            <returns>The container.</returns>
157
        </member>
158
        <member name="M:Caliburn.Micro.ContainerExtensions.PerRequest``1(Caliburn.Micro.SimpleContainer)">
159
            <summary>
160
            Registers an service to be created on each request.
161
            </summary>
162
            <typeparam name="TImplementation">The type of the implementation.</typeparam>
163
            <param name="container">The container.</param>
164
            <returns>The container.</returns>
165
        </member>
166
        <member name="M:Caliburn.Micro.ContainerExtensions.Instance``1(Caliburn.Micro.SimpleContainer,``0)">
167
            <summary>
168
            Registers an instance with the container.
169
            </summary>
170
            <typeparam name="TService">The type of the service.</typeparam>
171
            <param name="container">The container.</param>
172
            <param name="instance">The instance.</param>
173
            <returns>The container.</returns>
174
        </member>
175
        <member name="M:Caliburn.Micro.ContainerExtensions.Handler``1(Caliburn.Micro.SimpleContainer,System.Func{Caliburn.Micro.SimpleContainer,System.Object})">
176
            <summary>
177
            Registers a custom service handler with the container.
178
            </summary>
179
            <typeparam name="TService">The type of the service.</typeparam>
180
            <param name="container">The container.</param>
181
            <param name="handler">The handler.</param>
182
            <returns>The container.</returns>
183
        </member>
184
        <member name="M:Caliburn.Micro.ContainerExtensions.AllTypesOf``1(Caliburn.Micro.SimpleContainer,System.Reflection.Assembly,System.Func{System.Type,System.Boolean})">
185
            <summary>
186
            Registers all specified types in an assembly as singleton in the container.
187
            </summary>
188
            <typeparam name="TService">The type of the service.</typeparam>
189
            <param name="container">The container.</param>
190
            <param name="assembly">The assembly.</param>
191
            <param name="filter">The type filter.</param>
192
            <returns>The container.</returns>
193
        </member>
194
        <member name="T:Caliburn.Micro.IPhoneContainer">
195
            <summary>
196
            Defines an interface through which the storage system can communicate with an IoC container.
197
            </summary>
198
        </member>
199
        <member name="M:Caliburn.Micro.IPhoneContainer.RegisterWithPhoneService(System.Type,System.String,System.Type)">
200
            <summary>
201
            Registers the service as a singleton stored in the phone state.
202
            </summary>
203
            <param name="service">The service.</param>
204
            <param name="phoneStateKey">The phone state key.</param>
205
            <param name="implementation">The implementation.</param>
206
        </member>
207
        <member name="M:Caliburn.Micro.IPhoneContainer.RegisterWithAppSettings(System.Type,System.String,System.Type)">
208
            <summary>
209
            Registers the service as a singleton stored in the app settings.
210
            </summary>
211
            <param name="service">The service.</param>
212
            <param name="appSettingsKey">The app settings key.</param>
213
            <param name="implementation">The implementation.</param>
214
        </member>
215
        <member name="E:Caliburn.Micro.IPhoneContainer.Activated">
216
            <summary>
217
            Occurs when a new instance is created.
218
            </summary>
219
        </member>
220
        <member name="T:Caliburn.Micro.IStorageHandler">
221
            <summary>
222
            Handles the storage of an object instance.
223
            </summary>
224
        </member>
225
        <member name="M:Caliburn.Micro.IStorageHandler.Configure">
226
            <summary>
227
            Overrided by inheritors to configure the handler for use.
228
            </summary>
229
        </member>
230
        <member name="M:Caliburn.Micro.IStorageHandler.Handles(System.Object)">
231
            <summary>
232
            Indicates whether the specified instance can be stored by this handler.
233
            </summary>
234
            <param name="instance">The instance.</param>
235
            <returns></returns>
236
        </member>
237
        <member name="M:Caliburn.Micro.IStorageHandler.Save(System.Object,Caliburn.Micro.StorageMode)">
238
            <summary>
239
            Saves the specified instance.
240
            </summary>
241
            <param name="instance">The instance.</param>
242
            <param name="mode">The mode.</param>
243
        </member>
244
        <member name="M:Caliburn.Micro.IStorageHandler.Restore(System.Object,Caliburn.Micro.StorageMode)">
245
            <summary>
246
            Restores the specified instance.
247
            </summary>
248
            <param name="instance">The instance.</param>
249
            <param name="mode">The mode.</param>
250
        </member>
251
        <member name="P:Caliburn.Micro.IStorageHandler.Coordinator">
252
            <summary>
253
            Gets or sets the coordinator.
254
            </summary>
255
            <value>
256
            The coordinator.
257
            </value>
258
        </member>
259
        <member name="T:Caliburn.Micro.NavigationExtensions">
260
            <summary>
261
            Extension methods related to navigation.
262
            </summary>
263
        </member>
264
        <member name="M:Caliburn.Micro.NavigationExtensions.UriFor``1(Caliburn.Micro.INavigationService)">
265
            <summary>
266
            Creates a Uri builder based on a view model type.
267
            </summary>
268
            <typeparam name="TViewModel">The type of the view model.</typeparam>
269
            <param name="navigationService">The navigation service.</param>
270
            <returns>The builder.</returns>
271
        </member>
272
        <member name="T:Caliburn.Micro.PhoneContainer">
273
            <summary>
274
            A custom IoC container which integrates with the phone and properly registers all Caliburn.Micro services.
275
            </summary>
276
        </member>
277
        <member name="T:Caliburn.Micro.SimpleContainer">
278
            <summary>
279
              A simple IoC container.
280
            </summary>
281
        </member>
282
        <member name="M:Caliburn.Micro.SimpleContainer.#ctor">
283
            <summary>
284
              Initializes a new instance of the <see cref="T:Caliburn.Micro.SimpleContainer"/> class.
285
            </summary>
286
        </member>
287
        <member name="M:Caliburn.Micro.SimpleContainer.RegisterInstance(System.Type,System.String,System.Object)">
288
            <summary>
289
              Registers the instance.
290
            </summary>
291
            <param name = "service">The service.</param>
292
            <param name = "key">The key.</param>
293
            <param name = "implementation">The implementation.</param>
294
        </member>
295
        <member name="M:Caliburn.Micro.SimpleContainer.RegisterPerRequest(System.Type,System.String,System.Type)">
296
            <summary>
297
              Registers the class so that a new instance is created on every request.
298
            </summary>
299
            <param name = "service">The service.</param>
300
            <param name = "key">The key.</param>
301
            <param name = "implementation">The implementation.</param>
302
        </member>
303
        <member name="M:Caliburn.Micro.SimpleContainer.RegisterSingleton(System.Type,System.String,System.Type)">
304
            <summary>
305
              Registers the class so that it is created once, on first request, and the same instance is returned to all requestors thereafter.
306
            </summary>
307
            <param name = "service">The service.</param>
308
            <param name = "key">The key.</param>
309
            <param name = "implementation">The implementation.</param>
310
        </member>
311
        <member name="M:Caliburn.Micro.SimpleContainer.RegisterHandler(System.Type,System.String,System.Func{Caliburn.Micro.SimpleContainer,System.Object})">
312
            <summary>
313
              Registers a custom handler for serving requests from the container.
314
            </summary>
315
            <param name = "service">The service.</param>
316
            <param name = "key">The key.</param>
317
            <param name = "handler">The handler.</param>
318
        </member>
319
        <member name="M:Caliburn.Micro.SimpleContainer.UnregisterHandler(System.Type,System.String)">
320
            <summary>
321
              Unregisters any handlers for the service/key that have previously been registered.
322
            </summary>
323
            <param name = "service">The service.</param>
324
            <param name = "key">The key.</param>
325
        </member>
326
        <member name="M:Caliburn.Micro.SimpleContainer.GetInstance(System.Type,System.String)">
327
            <summary>
328
              Requests an instance.
329
            </summary>
330
            <param name = "service">The service.</param>
331
            <param name = "key">The key.</param>
332
            <returns>The instance, or null if a handler is not found.</returns>
333
        </member>
334
        <member name="M:Caliburn.Micro.SimpleContainer.HasHandler(System.Type,System.String)">
335
            <summary>
336
            Determines if a handler for the service/key has previously been registered.
337
            </summary>
338
            <param name="service">The service.</param>
339
            <param name="key">The key.</param>
340
            <returns>True if a handler is registere; false otherwise.</returns>
341
        </member>
342
        <member name="M:Caliburn.Micro.SimpleContainer.GetAllInstances(System.Type)">
343
            <summary>
344
              Requests all instances of a given type.
345
            </summary>
346
            <param name = "service">The service.</param>
347
            <returns>All the instances or an empty enumerable if none are found.</returns>
348
        </member>
349
        <member name="M:Caliburn.Micro.SimpleContainer.BuildUp(System.Object)">
350
            <summary>
351
              Pushes dependencies into an existing instance based on interface properties with setters.
352
            </summary>
353
            <param name = "instance">The instance.</param>
354
        </member>
355
        <member name="M:Caliburn.Micro.SimpleContainer.CreateChildContainer">
356
            <summary>
357
            Creates a child container.
358
            </summary>
359
            <returns>A new container.</returns>
360
        </member>
361
        <member name="M:Caliburn.Micro.SimpleContainer.BuildInstance(System.Type)">
362
            <summary>
363
              Actually does the work of creating the instance and satisfying it's constructor dependencies.
364
            </summary>
365
            <param name = "type">The type.</param>
366
            <returns></returns>
367
        </member>
368
        <member name="M:Caliburn.Micro.SimpleContainer.ActivateInstance(System.Type,System.Object[])">
369
            <summary>
370
              Creates an instance of the type with the specified constructor arguments.
371
            </summary>
372
            <param name = "type">The type.</param>
373
            <param name = "args">The constructor args.</param>
374
            <returns>The created instance.</returns>
375
        </member>
376
        <member name="E:Caliburn.Micro.SimpleContainer.Activated">
377
            <summary>
378
              Occurs when a new instance is created.
379
            </summary>
380
        </member>
381
        <member name="F:Caliburn.Micro.PhoneContainer.RootFrame">
382
            <summary>
383
            The root frame of the application.
384
            </summary>
385
        </member>
386
        <member name="M:Caliburn.Micro.PhoneContainer.#ctor(System.Windows.Controls.Frame)">
387
            <summary>
388
            Initializes a new instance of the <see cref="T:Caliburn.Micro.PhoneContainer"/> class.
389
            </summary>
390
            <param name="rootFrame">The root frame.</param>
391
        </member>
392
        <member name="M:Caliburn.Micro.PhoneContainer.RegisterWithPhoneService(System.Type,System.String,System.Type)">
393
            <summary>
394
            Registers the service as a singleton stored in the phone state.
395
            </summary>
396
            <param name="service">The service.</param>
397
            <param name="phoneStateKey">The phone state key.</param>
398
            <param name="implementation">The implementation.</param>
399
        </member>
400
        <member name="M:Caliburn.Micro.PhoneContainer.RegisterWithAppSettings(System.Type,System.String,System.Type)">
401
            <summary>
402
            Registers the service as a singleton stored in the app settings.
403
            </summary>
404
            <param name="service">The service.</param>
405
            <param name="appSettingsKey">The app settings key.</param>
406
            <param name="implementation">The implementation.</param>
407
        </member>
408
        <member name="M:Caliburn.Micro.PhoneContainer.RegisterPhoneServices(System.Boolean)">
409
            <summary>
410
            Registers the Caliburn.Micro services with the container.
411
            </summary>
412
            <param name="treatViewAsLoaded">if set to <c>true</c> [treat view as loaded].</param>
413
        </member>
414
        <member name="M:Caliburn.Micro.PhoneContainer.EnableStorageCoordinator">
415
            <summary>
416
            Enable the <see cref="T:Caliburn.Micro.StorageCoordinator"/>.
417
            </summary>
418
        </member>
419
        <member name="M:Caliburn.Micro.PhoneContainer.EnableTaskController">
420
            <summary>
421
            Enable the <see cref="T:Caliburn.Micro.TaskController"/>.
422
            </summary>
423
        </member>
424
        <member name="T:Caliburn.Micro.PhoneStateStorageMechanism">
425
            <summary>
426
            Stores data in the phone state.
427
            </summary>
428
        </member>
429
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.#ctor(Caliburn.Micro.IPhoneContainer,Caliburn.Micro.IPhoneService)">
430
            <summary>
431
            Initializes a new instance of the <see cref="T:Caliburn.Micro.PhoneStateStorageMechanism"/> class.
432
            </summary>
433
            <param name="container">The container.</param>
434
            <param name="phoneService">The phone service.</param>
435
        </member>
436
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.Supports(Caliburn.Micro.StorageMode)">
437
            <summary>
438
            Indicates what storage modes this mechanism provides.
439
            </summary>
440
            <param name="mode">The storage mode to check.</param>
441
            <returns>
442
            Whether or not it is supported.
443
            </returns>
444
        </member>
445
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.BeginStoring">
446
            <summary>
447
            Begins the storage transaction.
448
            </summary>
449
        </member>
450
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.Store(System.String,System.Object)">
451
            <summary>
452
            Stores the value with the specified key.
453
            </summary>
454
            <param name="key">The key.</param>
455
            <param name="data">The data.</param>
456
        </member>
457
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.EndStoring">
458
            <summary>
459
            Ends the storage transaction.
460
            </summary>
461
        </member>
462
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.TryGet(System.String,System.Object@)">
463
            <summary>
464
            Tries to get the data previously stored with the specified key.
465
            </summary>
466
            <param name="key">The key.</param>
467
            <param name="value">The value.</param>
468
            <returns>
469
            true if found; false otherwise
470
            </returns>
471
        </member>
472
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.Delete(System.String)">
473
            <summary>
474
            Deletes the data with the specified key.
475
            </summary>
476
            <param name="key">The key.</param>
477
        </member>
478
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.ClearLastSession">
479
            <summary>
480
            Clears the data stored in the last storage transaction.
481
            </summary>
482
        </member>
483
        <member name="M:Caliburn.Micro.PhoneStateStorageMechanism.RegisterSingleton(System.Type,System.String,System.Type)">
484
            <summary>
485
            Registers service with the storage mechanism as a singleton.
486
            </summary>
487
            <param name="service">The service.</param>
488
            <param name="key">The key.</param>
489
            <param name="implementation">The implementation.</param>
490
        </member>
491
        <member name="T:Caliburn.Micro.ISoundEffectPlayer">
492
            <summary>
493
              Service allowing to play a .wav sound effect
494
            </summary>
495
        </member>
496
        <member name="M:Caliburn.Micro.ISoundEffectPlayer.Play(System.Uri)">
497
            <summary>
498
              Plays a sound effect
499
            </summary>
500
            <param name="wavResource"> The uri of the resource containing the .wav file </param>
501
        </member>
502
        <member name="T:Caliburn.Micro.XnaSoundEffectPlayer">
503
            <summary>
504
              Default <see cref="T:Caliburn.Micro.ISoundEffectPlayer"/> implementation, using Xna Framework. The sound effect is played without interrupting the music playback on the phone (which is required for the app certification in the WP7 Marketplace. Also note that using the Xna Framework in a WP7 Silverlight app is explicitly allowed for this very purpose.
505
            </summary>
506
        </member>
507
        <member name="M:Caliburn.Micro.XnaSoundEffectPlayer.Play(System.Uri)">
508
            <summary>
509
              Plays a sound effect
510
            </summary>
511
            <param name="wavResource"> The uri of the resource containing the .wav file </param>
512
        </member>
513
        <member name="T:Caliburn.Micro.StorageCoordinator">
514
            <summary>
515
            Coordinates the saving and loading of objects based on application lifecycle events.
516
            </summary>
517
        </member>
518
        <member name="M:Caliburn.Micro.StorageCoordinator.#ctor(Caliburn.Micro.IPhoneContainer,Caliburn.Micro.IPhoneService,System.Collections.Generic.IEnumerable{Caliburn.Micro.IStorageMechanism},System.Collections.Generic.IEnumerable{Caliburn.Micro.IStorageHandler})">
519
            <summary>
520
            Initializes a new instance of the <see cref="T:Caliburn.Micro.StorageCoordinator"/> class.
521
            </summary>
522
            <param name="container">The container.</param>
523
            <param name="phoneService">The phone service.</param>
524
            <param name="storageMechanisms">The storage mechanisms.</param>
525
            <param name="handlers">The handlers.</param>
526
        </member>
527
        <member name="M:Caliburn.Micro.StorageCoordinator.Start">
528
            <summary>
529
            Starts monitoring application and container events.
530
            </summary>
531
        </member>
532
        <member name="M:Caliburn.Micro.StorageCoordinator.Stop">
533
            <summary>
534
            Stops monitoring application and container events.
535
            </summary>
536
        </member>
537
        <member name="M:Caliburn.Micro.StorageCoordinator.GetStorageMechanism``1">
538
            <summary>
539
            Gets the storage mechanism.
540
            </summary>
541
            <typeparam name="T">The type of storage mechanism to get.</typeparam>
542
            <returns>The storage mechanism.</returns>
543
        </member>
544
        <member name="M:Caliburn.Micro.StorageCoordinator.AddStorageMechanism(Caliburn.Micro.IStorageMechanism)">
545
            <summary>
546
            Adds the storage mechanism.
547
            </summary>
548
            <param name="storageMechanism">The storage mechanism.</param>
549
        </member>
550
        <member name="M:Caliburn.Micro.StorageCoordinator.AddStorageHandler(Caliburn.Micro.IStorageHandler)">
551
            <summary>
552
            Adds the storage handler.
553
            </summary>
554
            <param name="handler">The handler.</param>
555
            <returns>Itself</returns>
556
        </member>
557
        <member name="M:Caliburn.Micro.StorageCoordinator.GetStorageHandlerFor(System.Object)">
558
            <summary>
559
            Gets the storage handler for a paricular instance.
560
            </summary>
561
            <param name="instance">The instance.</param>
562
            <returns>The storage handler.</returns>
563
        </member>
564
        <member name="M:Caliburn.Micro.StorageCoordinator.Save(Caliburn.Micro.StorageMode)">
565
            <summary>
566
            Saves all monitored instances according to the provided mode.
567
            </summary>
568
            <param name="saveMode">The save mode.</param>
569
        </member>
570
        <member name="M:Caliburn.Micro.StorageCoordinator.Restore(System.Object,Caliburn.Micro.StorageMode)">
571
            <summary>
572
            Restores the specified instance.
573
            </summary>
574
            <param name="instance">The instance.</param>
575
            <param name="restoreMode">The restore mode.</param>
576
        </member>
577
        <member name="T:Caliburn.Micro.StorageHandler`1">
578
            <summary>
579
            Handles the storage of a pariticular class.
580
            </summary>
581
            <typeparam name="T">The type that this class handles.</typeparam>
582
        </member>
583
        <member name="M:Caliburn.Micro.StorageHandler`1.Id(System.Func{`0,System.Object})">
584
            <summary>
585
            Provides a mechanism for obtaining an instance's unique id.
586
            </summary>
587
            <param name="getter">The getter.</param>
588
        </member>
589
        <member name="M:Caliburn.Micro.StorageHandler`1.Configure">
590
            <summary>
591
            Overrided by inheritors to configure the handler for use.
592
            </summary>
593
        </member>
594
        <member name="M:Caliburn.Micro.StorageHandler`1.EntireGraph``1(System.String)">
595
            <summary>
596
            Instructs the handler to store the entire object graph, rather than individual properties.
597
            </summary>
598
            <typeparam name="TService">The type of the service.</typeparam>
599
            <param name="storageKey">The optional storage key.</param>
600
            <returns>The builder.</returns>
601
        </member>
602
        <member name="M:Caliburn.Micro.StorageHandler`1.Property(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
603
            <summary>
604
            Instructs the handler to store a property.
605
            </summary>
606
            <param name="property">The property.</param>
607
            <returns>The builder.</returns>
608
        </member>
609
        <member name="M:Caliburn.Micro.StorageHandler`1.Child(System.Linq.Expressions.Expression{System.Func{`0,System.Object}})">
610
            <summary>
611
            Instructs the handler to store a child object's properties.
612
            </summary>
613
            <param name="property">The property.</param>
614
            <returns>The builder.</returns>
615
            <remarks>This assumes that the parent instance provides the child instance, but that the child instance's properties are handled by a unique handler.</remarks>
616
        </member>
617
        <member name="M:Caliburn.Micro.StorageHandler`1.AddInstruction">
618
            <summary>
619
            Adds a new storage instruction.
620
            </summary>
621
            <returns>The builder.</returns>
622
        </member>
623
        <member name="M:Caliburn.Micro.StorageHandler`1.Save(`0,Caliburn.Micro.StorageMode)">
624
            <summary>
625
            Uses this handler to save a particular instance using instructions that support the provided mode.
626
            </summary>
627
            <param name="instance">The instance.</param>
628
            <param name="mode">The storage mode.</param>
629
        </member>
630
        <member name="M:Caliburn.Micro.StorageHandler`1.Restore(`0,Caliburn.Micro.StorageMode)">
631
            <summary>
632
            Uses this handler to restore a particular instance using instructions that support the provided mode.
633
            </summary>
634
            <param name="instance">The instance.</param>
635
            <param name="mode">The mode.</param>
636
        </member>
637
        <member name="P:Caliburn.Micro.StorageHandler`1.Coordinator">
638
            <summary>
639
            Gets or sets the coordinator.
640
            </summary>
641
            <value>
642
            The coordinator.
643
            </value>
644
        </member>
645
        <member name="T:Caliburn.Micro.StorageInstruction`1">
646
            <summary>
647
            An instruction for saving/loading data.
648
            </summary>
649
            <typeparam name="T">The model type.</typeparam>
650
        </member>
651
        <member name="P:Caliburn.Micro.StorageInstruction`1.Owner">
652
            <summary>
653
            Gets or sets the owner.
654
            </summary>
655
            <value>
656
            The owner.
657
            </value>
658
        </member>
659
        <member name="P:Caliburn.Micro.StorageInstruction`1.StorageMechanism">
660
            <summary>
661
            Gets or sets the storage mechanism.
662
            </summary>
663
            <value>
664
            The storage mechanism.
665
            </value>
666
        </member>
667
        <member name="P:Caliburn.Micro.StorageInstruction`1.Key">
668
            <summary>
669
            Gets or sets the persistence key.
670
            </summary>
671
            <value>
672
            The key.
673
            </value>
674
        </member>
675
        <member name="P:Caliburn.Micro.StorageInstruction`1.Save">
676
            <summary>
677
            Gets or sets the save action.
678
            </summary>
679
            <value>
680
            The save action.
681
            </value>
682
        </member>
683
        <member name="P:Caliburn.Micro.StorageInstruction`1.Restore">
684
            <summary>
685
            Gets or sets the restore action.
686
            </summary>
687
            <value>
688
            The restore action.
689
            </value>
690
        </member>
691
        <member name="T:Caliburn.Micro.StorageInstructionBuilder`1">
692
            <summary>
693
            Used to create a fluent interface for building up a storage instruction.
694
            </summary>
695
            <typeparam name="T"></typeparam>
696
        </member>
697
        <member name="M:Caliburn.Micro.StorageInstructionBuilder`1.#ctor(Caliburn.Micro.StorageInstruction{`0})">
698
            <summary>
699
            Initializes a new instance of the <see cref="T:Caliburn.Micro.StorageInstructionBuilder`1"/> class.
700
            </summary>
701
            <param name="storageInstruction">The storage instruction.</param>
702
        </member>
703
        <member name="M:Caliburn.Micro.StorageInstructionBuilder`1.Configure(System.Action{Caliburn.Micro.StorageInstruction{`0}})">
704
            <summary>
705
            Configures the instruction with the specified behavior.
706
            </summary>
707
            <param name="configure">The configuration callback.</param>
708
            <returns>Itself</returns>
709
        </member>
710
        <member name="T:Caliburn.Micro.StorageInstructionExtensions">
711
            <summary>
712
            Extension methods for configuring storage instructions.
713
            </summary>
714
        </member>
715
        <member name="M:Caliburn.Micro.StorageInstructionExtensions.InPhoneState``1(Caliburn.Micro.StorageInstructionBuilder{``0})">
716
            <summary>
717
            Stores the data in the transient phone State.
718
            </summary>
719
            <typeparam name="T">The model type.</typeparam>
720
            <param name="builder">The builder.</param>
721
            <returns>The builder.</returns>
722
        </member>
723
        <member name="M:Caliburn.Micro.StorageInstructionExtensions.InAppSettings``1(Caliburn.Micro.StorageInstructionBuilder{``0})">
724
            <summary>
725
            Stores the data in the permanent ApplicationSettings.
726
            </summary>
727
            <typeparam name="T">The model type.</typeparam>
728
            <param name="builder">The builder.</param>
729
            <returns>The builder.</returns>
730
        </member>
731
        <member name="M:Caliburn.Micro.StorageInstructionExtensions.RestoreAfterActivation``1(Caliburn.Micro.StorageInstructionBuilder{``0})">
732
            <summary>
733
            Restores the data when IActivate.Activated is raised.
734
            </summary>
735
            <typeparam name="T">The model type.</typeparam>
736
            <param name="builder">The builder.</param>
737
            <returns>The builder.</returns>
738
        </member>
739
        <member name="M:Caliburn.Micro.StorageInstructionExtensions.RestoreAfterViewLoad``1(Caliburn.Micro.StorageInstructionBuilder{``0})">
740
            <summary>
741
            Restores the data after view's Loaded event is raised.
742
            </summary>
743
            <typeparam name="T">The model type.</typeparam>
744
            <param name="builder">The builder.</param>
745
            <returns>The builder.</returns>
746
        </member>
747
        <member name="M:Caliburn.Micro.StorageInstructionExtensions.RestoreAfterViewReady``1(Caliburn.Micro.StorageInstructionBuilder{``0})">
748
            <summary>
749
            Restores the data after view's LayoutUpdated event is raised.
750
            </summary>
751
            <typeparam name="T">The model type.</typeparam>
752
            <param name="builder">The builder.</param>
753
            <returns>The builder.</returns>
754
        </member>
755
        <member name="M:Caliburn.Micro.StorageInstructionExtensions.ActiveItemIndex``1(Caliburn.Micro.StorageHandler{``0})">
756
            <summary>
757
            Stores the index of the Conductor's ActiveItem.
758
            </summary>
759
            <typeparam name="T">The model type.</typeparam>
760
            <param name="handler">The handler.</param>
761
            <returns>The builder.</returns>
762
        </member>
763
        <member name="T:Caliburn.Micro.StorageMode">
764
            <summary>
765
            The mode used to save/restore data.
766
            </summary>
767
        </member>
768
        <member name="F:Caliburn.Micro.StorageMode.Automatic">
769
            <summary>
770
            Automatic Determine the Mode
771
            </summary>
772
        </member>
773
        <member name="F:Caliburn.Micro.StorageMode.Temporary">
774
            <summary>
775
            Use Temporary storage.
776
            </summary>
777
        </member>
778
        <member name="F:Caliburn.Micro.StorageMode.Permanent">
779
            <summary>
780
            Use Permenent storage.
781
            </summary>
782
        </member>
783
        <member name="F:Caliburn.Micro.StorageMode.Any">
784
            <summary>
785
            Use any storage mechanism available.
786
            </summary>
787
        </member>
788
        <member name="T:Caliburn.Micro.TaskCompleted`1">
789
            <summary>
790
            A message which is published when a task completes.
791
            </summary>
792
            <typeparam name="TTaskEventArgs">The type of the task event args.</typeparam>
793
        </member>
794
        <member name="F:Caliburn.Micro.TaskCompleted`1.State">
795
            <summary>
796
            Optional state provided by the original sender.
797
            </summary>
798
        </member>
799
        <member name="F:Caliburn.Micro.TaskCompleted`1.Result">
800
            <summary>
801
            The results of the task.
802
            </summary>
803
        </member>
804
        <member name="T:Caliburn.Micro.TaskController">
805
            <summary>
806
            Handles <see cref="T:Caliburn.Micro.TaskExecutionRequested"/> messages and ensures that the property handler receives the completion message.
807
            </summary>
808
        </member>
809
        <member name="M:Caliburn.Micro.TaskController.#ctor(Caliburn.Micro.IPhoneService,Caliburn.Micro.IEventAggregator)">
810
            <summary>
811
            Initializes a new instance of the <see cref="T:Caliburn.Micro.TaskController"/> class.
812
            </summary>
813
            <param name="phoneService">The phone service.</param>
814
            <param name="events">The event aggregator.</param>
815
        </member>
816
        <member name="M:Caliburn.Micro.TaskController.Start">
817
            <summary>
818
            Starts monitoring for task requests and controlling completion messages.
819
            </summary>
820
        </member>
821
        <member name="M:Caliburn.Micro.TaskController.Stop">
822
            <summary>
823
            Stops monitoring for task requests and controlling completion messages.
824
            </summary>
825
        </member>
826
        <member name="T:Caliburn.Micro.TaskExecutionRequested">
827
            <summary>
828
            A message that is published to signify a components request for the execution of a particular task.
829
            </summary>
830
        </member>
831
        <member name="F:Caliburn.Micro.TaskExecutionRequested.State">
832
            <summary>
833
            Optional state to be passed along to the task completion message.
834
            </summary>
835
        </member>
836
        <member name="F:Caliburn.Micro.TaskExecutionRequested.Task">
837
            <summary>
838
            The task instance.
839
            </summary>
840
        </member>
841
        <member name="T:Caliburn.Micro.TaskExtensionMethods">
842
            <summary>
843
            Extension methods related to phone tasks.
844
            </summary>
845
        </member>
846
        <member name="M:Caliburn.Micro.TaskExtensionMethods.RequestTask``1(Caliburn.Micro.IEventAggregator,System.Action{``0},System.Object)">
847
            <summary>
848
            Creates a task and publishes it using the <see cref="T:Caliburn.Micro.EventAggregator"/>.
849
            </summary>
850
            <typeparam name="TTask">The task to create.</typeparam>
851
            <param name="events">The event aggregator.</param>
852
            <param name="configure">Optional configuration for the task.</param>
853
            <param name="state">Optional state to be passed along to the task completion message.</param>
854
        </member>
855
        <member name="T:Caliburn.Micro.UriBuilder`1">
856
            <summary>
857
            Builds a Uri in a strongly typed fashion, based on a ViewModel.
858
            </summary>
859
            <typeparam name="TViewModel"></typeparam>
860
        </member>
861
        <member name="M:Caliburn.Micro.UriBuilder`1.WithParam``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
862
            <summary>
863
            Adds a query string parameter to the Uri.
864
            </summary>
865
            <typeparam name="TValue">The type of the value.</typeparam>
866
            <param name="property">The property.</param>
867
            <param name="value">The property value.</param>
868
            <returns>Itself</returns>
869
        </member>
870
        <member name="M:Caliburn.Micro.UriBuilder`1.AttachTo(Caliburn.Micro.INavigationService)">
871
            <summary>
872
            Attaches a navigation servies to this builder.
873
            </summary>
874
            <param name="navigationService">The navigation service.</param>
875
            <returns>Itself</returns>
876
        </member>
877
        <member name="M:Caliburn.Micro.UriBuilder`1.Navigate">
878
            <summary>
879
            Navigates to the Uri represented by this builder.
880
            </summary>
881
        </member>
882
        <member name="M:Caliburn.Micro.UriBuilder`1.BuildUri">
883
            <summary>
884
            Builds the URI.
885
            </summary>
886
            <returns>A uri constructed with the current configuration information.</returns>
887
        </member>
888
        <member name="T:Caliburn.Micro.IVibrateController">
889
            <summary>
890
              Allows applications to start and stop vibration on the device.
891
            </summary>
892
        </member>
893
        <member name="M:Caliburn.Micro.IVibrateController.Start(System.TimeSpan)">
894
            <summary>
895
              Starts vibration on the device.
896
            </summary>
897
            <param name="duration"> A TimeSpan object specifying the amount of time for which the phone vibrates. </param>
898
        </member>
899
        <member name="M:Caliburn.Micro.IVibrateController.Stop">
900
            <summary>
901
              Stops vibration on the device.
902
            </summary>
903
        </member>
904
        <member name="T:Caliburn.Micro.SystemVibrateController">
905
            <summary>
906
              The default implementation of <see cref="T:Caliburn.Micro.IVibrateController"/> , using the system controller.
907
            </summary>
908
        </member>
909
        <member name="M:Caliburn.Micro.SystemVibrateController.Start(System.TimeSpan)">
910
            <summary>
911
              Starts vibration on the device.
912
            </summary>
913
            <param name="duration"> A TimeSpan object specifying the amount of time for which the phone vibrates. </param>
914
        </member>
915
        <member name="M:Caliburn.Micro.SystemVibrateController.Stop">
916
            <summary>
917
              Stops vibration on the device.
918
            </summary>
919
        </member>
920
        <member name="T:Caliburn.Micro.WindowManagerExtensions">
921
            <summary>
922
            WindowManager extensions
923
            </summary>
924
        </member>
925
        <member name="M:Caliburn.Micro.WindowManagerExtensions.ShowDialogWithFeedback(Caliburn.Micro.IWindowManager,System.Object,System.Object,System.Uri,System.Boolean)">
926
            <summary>
927
              Shows a modal dialog for the specified model, using vibrate and audio feedback
928
            </summary>
929
            <param name = "windowManager">The WindowManager instance.</param>
930
            <param name = "rootModel">The root model.</param>
931
            <param name = "context">The context.</param>
932
            <param name="wavOpeningSound">If not null, use the specified .wav as opening sound</param>
933
            <param name="vibrate">If true, use a vibration feedback on dialog opening</param>
934
        </member>
935
    </members>
936
</doc>