summaryrefslogtreecommitdiff
path: root/slips/build/lib/castle/bin/Castle.Facilities.Synchronize.xml
blob: bbf53e1d26c1999610b08b8449576b0cb270383f (plain)
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Castle.Facilities.Synchronize</name>
    </assembly>
    <members>
        <member name="T:Castle.Facilities.Synchronize.Constants">
            <summary>
            Exposes constants used by the facility and its internal 
            components
            </summary>
        </member>
        <member name="F:Castle.Facilities.Synchronize.Constants.SynchronizedAttrib">
            <summary>
            Configuration attribute to enable synchronization.
            </summary>
        </member>
        <member name="F:Castle.Facilities.Synchronize.Constants.ContextRefAttribute">
            <summary>
            Configuration attribute to specify context key reference.
            </summary>
        </member>
        <member name="F:Castle.Facilities.Synchronize.Constants.ContextTypeAttribute">
            <summary>
            Configuration attribute to specify context service reference.
            </summary>
        </member>
        <member name="F:Castle.Facilities.Synchronize.Constants.ControlProxyHookAttrib">
            <summary>
            Configuration attribute to specify a custom control proxy hook.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.ControlComponentActivator.#ctor(Castle.Core.ComponentModel,Castle.MicroKernel.IKernel,Castle.MicroKernel.ComponentInstanceDelegate,Castle.MicroKernel.ComponentInstanceDelegate)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.ControlComponentActivator"/> class.
            </summary>
            <param name="model">The model.</param>
            <param name="kernel">The kernel.</param>
            <param name="onCreation">Delegate called on construction.</param>
            <param name="onDestruction">Delegate called on destruction.</param>
        </member>
        <member name="T:Castle.Facilities.Synchronize.ControlComponentHook">
            <summary>
            Proxy generation hook to filter all System methods when
            proxying a Windows Forms Control.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.ControlComponentHook.ShouldInterceptMethod(System.Type,System.Reflection.MethodInfo)">
            <summary>
            Filters System methods.
            </summary>
            <param name="type">The type.</param>
            <param name="methodInfo">The method info.</param>
            <returns>true if not a System namespace, false otherwise.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.ControlComponentHook.NonVirtualMemberNotification(System.Type,System.Reflection.MemberInfo)">
            <summary>
            Not used.
            </summary>
            <param name="type"></param>
            <param name="memberInfo"></param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.ControlComponentHook.MethodsInspected">
            <summary>
            Not used.
            </summary>
        </member>
        <member name="T:Castle.Facilities.Synchronize.ControlComponentInspector">
            <summary>
            Checks for <see cref="T:System.Windows.Forms.Control"/> implementations a registers
            components to ensure the controls can be safely created and
            accessed from different threads.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.ControlComponentInspector.#ctor(Castle.MicroKernel.IKernel,Castle.Core.Configuration.IConfiguration)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.ControlComponentInspector"/> class.
            </summary>
            <param name="kernel">The kernel.</param>
            <param name="config">The config.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.ControlComponentInspector.ProcessModel(Castle.MicroKernel.IKernel,Castle.Core.ComponentModel)">
            <summary>
            Processes <see cref="T:System.Windows.Forms.Control"/> implementations.
            </summary>
            <param name="kernel">The kernel.</param>
            <param name="model">The model.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.ControlComponentInspector.Dispose">
            <summary>
            Releases the marshaling control.
            </summary>
        </member>
        <member name="T:Castle.Facilities.Synchronize.ControlUtils">
            <summary>
            Common support for Windows Form Controls.
            </summary>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeAttribute">
            <summary>
            Used to declare that a component wants synchronization.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeAttribute.#ctor">
            <summary>
            Constructs an empty SynchronizeAttribute.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeAttribute.#ctor(System.String)">
            <summary>
            Constructs the SynchronizeAttribute pointing to a key.
            </summary>
            <param name="componentKey">The component key.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeAttribute.#ctor(System.Type)">
            <summary>
            Constructs the SynchronizeAttribute pointing to a service.
            </summary>
            <param name="interceptorType">The service type.</param>
        </member>
        <member name="P:Castle.Facilities.Synchronize.SynchronizeAttribute.SynchronizeContext">
            <summary>
            Gets the synchronization context reference.
            </summary>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeComponentInspector">
            <summary>
            Obtain synchronization configuration based on the
            component configuration check for the attributes if
            not available.
            </summary>
            <example>
            	<component id="component1"
            		 synchronized="true"
            	     service="SyncTest.IService, SyncTest" 
            	     type="SyncTest.IService, SyncTest">
            	  <synchronize contextRef="DefaultContextKey">
            	    <method name="Method1" contextRef="MyContextKey"></method>
            	    <method name="Method2" contextType="SynchornizationContext"></method>
            	  </synchronize>
            	</component>
            </example>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.#ctor(Castle.MicroKernel.IKernel)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.SynchronizeComponentInspector"/> class.
            </summary>
            <param name="kernel">The kernel.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.ProcessModel(Castle.MicroKernel.IKernel,Castle.Core.ComponentModel)">
            <summary>
            Checks for synchronization configuration information or
            attributes and applies them if valid.
            </summary>
            <param name="kernel">The kernel.</param>
            <param name="model">The model.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.ObtainNodeName">
            <summary>
            Obtains the name of the node.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.CheckFromConfiguration(Castle.Core.ComponentModel)">
            <summary>
            Obtains synchronization information from the configuration.
            </summary>
            <param name="model">The model.</param>
            <returns>
            	<c>true</c> if available from configuration; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.ProcessMeta(Castle.Core.ComponentModel,System.Reflection.MethodInfo[],Castle.Core.MethodMetaModel)">
            <summary>
            Processes the meta information available on the component
            configuration.
            </summary>
            <param name="model">The model.</param>
            <param name="methods">The methods.</param>
            <param name="metaModel">The meta model.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.CheckFromAttributes(Castle.Core.ComponentModel)">
            <summary>
            Obtains synchronization information from the attributes.
            </summary>
            <param name="model">The model.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.HasImplicitSynchronization(Castle.Core.ComponentModel)">
            <summary>
            Determines whether the model has implicit synchronization.
            </summary>
            <param name="model">The model.</param>
            <returns>
            	<c>true</c> if has implicit synchronization; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.ApplySynchronization(Castle.Core.ComponentModel)">
            <summary>
            Applies the synchronization support to the model.
            </summary>
            <param name="model">The model.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeComponentInspector.ValidateSynchronization(Castle.Core.ComponentModel)">
            <summary>
            Validates the synchronization to be applied.
            </summary>
            <param name="model">The model.</param>
            <returns>
            	<c>true</c> if valid synchronization; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeContextReferenceType">
            <summary>
            Identifies the type of synchornization context reference. 
            </summary>
        </member>
        <member name="F:Castle.Facilities.Synchronize.SynchronizeContextReferenceType.Interface">
            <summary>
            Service interface reference.
            </summary>
        </member>
        <member name="F:Castle.Facilities.Synchronize.SynchronizeContextReferenceType.Key">
            <summary>
            Component key reference.
            </summary>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeContextReference">
            <summary>
            Represents a reference to a SynchronizeContext component.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeContextReference.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.SynchronizeContextReference"/> class.
            </summary>
            <param name="componentKey">The component key.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeContextReference.#ctor(System.Type)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.SynchronizeContextReference"/> class.
            </summary>
            <param name="serviceType">Type of the service.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeContextReference.Equals(System.Object)">
            <summary>
            Determines if the other reference is equal.
            </summary>
            <param name="obj">The other reference.</param>
            <returns>true if equal, false otherwise.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeContextReference.GetHashCode">
            <summary>
            Gets the hash code.
            </summary>
            <returns>The hash code.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeContextReference.ToString">
            <summary>
            Gets the string representation of the reference.
            </summary>
            <returns>The string representation of the reference.</returns>
        </member>
        <member name="P:Castle.Facilities.Synchronize.SynchronizeContextReference.ServiceType">
            <summary>
            Gets the type of the synchronization service.
            </summary>
            <value>The type of the synchronization service.</value>
        </member>
        <member name="P:Castle.Facilities.Synchronize.SynchronizeContextReference.ComponentKey">
            <summary>
            Gets the synchronization context component key.
            </summary>
            <value>The synchronization component key.</value>
        </member>
        <member name="P:Castle.Facilities.Synchronize.SynchronizeContextReference.ReferenceType">
            <summary>
            Gets the type of the reference.
            </summary>
            <value>The type of the reference.</value>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeFacility">
            <summary>
            Augments the kernel to handle synchronized components.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeFacility.Init">
            <summary>
            Registers all components needed by the facility.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeFacility.RegisterSynchronizationComponents">
            <summary>
            Registers the synchronization components.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeFacility.RegisterSynchronizationInspectors">
            <summary>
            Registers the synchronization inspectors.
            </summary>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeInterceptor">
            <summary>
            Intercepts calls to synchronized components and ensures
            that they execute in the proper synchronization context.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeInterceptor.#ctor(Castle.MicroKernel.IKernel,Castle.Facilities.Synchronize.SynchronizeMetaInfoStore)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.SynchronizeInterceptor"/> class.
            </summary>
            <param name="kernel">The kernel.</param>
            <param name="metaStore">The meta store.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeInterceptor.SetInterceptedComponentModel(Castle.Core.ComponentModel)">
            <summary>
            Sets the intercepted ComponentModel.
            </summary>
            <param name="target">The targets ComponentModel.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeInterceptor.Intercept(Castle.Core.Interceptor.IInvocation)">
            <summary>
            Intercepts the invocation and applies any necessary
            synchronization.
            </summary>
            <param name="invocation">The invocation.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeInterceptor.InvokeInSynchronizationContext(Castle.Core.Interceptor.IInvocation)">
            <summary>
            Continues the invocation in a synchronization context
            if necessary.
            </summary>
            <param name="invocation">The invocation.</param>
            <returns>
            	<c>true</c> if continued; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeInterceptor.InvokeUsingSynchronizationTarget(Castle.Core.Interceptor.IInvocation)">
            <summary>
            Continues the invocation using the targets implicit
            synchronization if necessary.
            </summary>
            <param name="invocation">The invocation.</param>
            <returns>
            	<c>true</c> if continued; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeInterceptor.InvokeSafely(Castle.Core.Interceptor.IInvocation)">
            <summary>
            Used by the safe synchronization delegate.
            </summary>
            <param name="invocation">The invocation.</param>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeMetaInfo">
            <summary>
            Maintains the synchronization meta-info for a component.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfo.#ctor(Castle.Facilities.Synchronize.SynchronizeAttribute)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.SynchronizeMetaInfo"/> class.
            </summary>
            <param name="defaultSyncAttrib">The default synchronization.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfo.Add(System.Reflection.MethodInfo,Castle.Facilities.Synchronize.SynchronizeAttribute)">
            <summary>
            Adds the synchronizaed method to the store.
            </summary>
            <param name="method">The method.</param>
            <param name="syncAttrib">The method synchronization.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfo.GetSynchronizedContextFor(System.Reflection.MethodInfo)">
            <summary>
            Gets the reference to the synchronized context
            requested by the method.
            </summary>
            <param name="methodInfo">The method.</param>
            <returns>The synchroniztion context reference or null.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfo.GetUniqueSynchContextReferences">
            <summary>
            Gets the list of unique synchronization context references.
            </summary>
            <returns>The list of unique synchronization context references.</returns>
        </member>
        <member name="P:Castle.Facilities.Synchronize.SynchronizeMetaInfo.Methods">
            <summary>
            Gets the list of synchronized methods.
            </summary>
            <value>The list of synchronized methods.</value>
        </member>
        <member name="T:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore">
            <summary>
            Maintains the synchronization meta-info for all components.
            </summary>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.#ctor(Castle.MicroKernel.IKernel)">
            <summary>
            Initializes a new instance of the <see cref="T:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore"/> class.
            </summary>
            <param name="kernel">The kernel.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.CreateMetaFromType(System.Type)">
            <summary>
            Creates the meta-info from the specified type.
            </summary>
            <param name="implementation">The implementation type.</param>
            <returns>The corresponding meta-info.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.PopulateMetaInfoFromType(Castle.Facilities.Synchronize.SynchronizeMetaInfo,System.Type)">
            <summary>
            Populates the meta-info from the attributes.
            </summary>
            <param name="metaInfo">The meta info.</param>
            <param name="implementation">The implementation type.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.CreateMetaInfoFromConfig(System.Type,Castle.Core.Configuration.IConfiguration)">
            <summary>
            Creates the meta-info from the configuration.
            </summary>
            <param name="implementation">The implementation type.</param>
            <param name="config">The configuration.</param>
            <returns>The corresponding meta-info.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.PopulateMetaFromConfig(System.Type,System.Reflection.MethodInfo[],Castle.Core.Configuration.IConfiguration)">
            <summary>
            Populates the meta-info from the configuration.
            </summary>
            <param name="implementation">The implementation.</param>
            <param name="methods">The methods.</param>
            <param name="config">The config.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.GetMetaFor(System.Type)">
            <summary>
            Gets the meta-info for the specified implementation type.
            </summary>
            <param name="implementation">The implementation type.</param>
            <returns>The corresponding meta-info.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.Register(System.Type,Castle.Facilities.Synchronize.SynchronizeMetaInfo)">
            <summary>
            Registers the meta-info for the specified implementation type.
            </summary>
            <param name="implementation">The implementation type.</param>
            <param name="metaInfo">The meta-info.</param>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.CreateAttributeFromConfig(Castle.Core.Configuration.IConfiguration)">
            <summary>
            Creates the synchronization attribute from configuration.
            </summary>
            <param name="config">The configuration.</param>
            <returns>The corresponding synchronization attribute.</returns>
        </member>
        <member name="M:Castle.Facilities.Synchronize.SynchronizeMetaInfoStore.ObtainConversionManager(Castle.MicroKernel.IKernel)">
            <summary>
            Obtains the <see cref="T:Castle.MicroKernel.SubSystems.Conversion.IConversionManager"/>.
            </summary>
            <param name="kernel">The kernel.</param>
            <returns>The <see cref="T:Castle.MicroKernel.SubSystems.Conversion.IConversionManager"/>.</returns>
        </member>
    </members>
</doc>