forked from SolrNet/SolrNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStructureMap.xml
3931 lines (3928 loc) · 187 KB
/
StructureMap.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>StructureMap</name>
</assembly>
<members>
<member name="M:StructureMap.IContext.BuildUp(System.Object)">
<summary>
The "BuildUp" method takes in an already constructed object
and uses Setter Injection to push in configured dependencies
of that object
</summary>
<param name="target"></param>
</member>
<member name="M:StructureMap.IContext.GetInstance``1">
<summary>
Get the object of type T that is valid for this build session.
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.GetInstance``1(System.String)">
<summary>
Get the object of type T that is valid for this build session by name.
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.GetInstance(System.Type,System.String)">
<summary>
Creates or finds the named instance of the pluginType
</summary>
<param name="pluginType"></param>
<param name="instanceKey"></param>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.RegisterDefault(System.Type,System.Object)">
<summary>
Register a default object for the given PluginType that will
be used throughout the rest of the current object request
</summary>
<param name="pluginType"></param>
<param name="defaultObject"></param>
</member>
<member name="M:StructureMap.IContext.TryGetInstance``1">
<summary>
Same as GetInstance, but can gracefully return null if
the Type does not already exist
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.TryGetInstance``1(System.String)">
<summary>
Same as GetInstance(name), but can gracefully return null if
the Type and name does not already exist
</summary>
<typeparam name="T"></typeparam>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.TryGetInstance(System.Type)">
<summary>
Creates or finds the default instance of the pluginType. Returns null if the pluginType is not known to the container.
</summary>
<param name="pluginType"></param>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.TryGetInstance(System.Type,System.String)">
<summary>
Creates or finds the named instance of the pluginType. Returns null if the named instance is not known to the container.
</summary>
<param name="pluginType"></param>
<param name="instanceKey"></param>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.All``1">
<summary>
Gets all objects in the current object graph that can be cast
to T that have already been created
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.GetAllInstances``1">
<summary>
Creates/Resolves every configured instance of PlutinType T
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.IContext.GetAllInstances(System.Type)">
<summary>
Creates or resolves all registered instances of the pluginType
</summary>
<param name="pluginType"></param>
<returns></returns>
</member>
<member name="P:StructureMap.IContext.BuildStack">
<summary>
Gets a reference to the <see cref="P:StructureMap.IContext.BuildStack">BuildStack</see> for this build session
</summary>
</member>
<member name="P:StructureMap.IContext.ParentType">
<summary>
The concrete type of the immediate parent object in the object graph
</summary>
</member>
<member name="P:StructureMap.IContext.Root">
<summary>
Gets the root "frame" of the object request
</summary>
</member>
<member name="P:StructureMap.IContext.RequestedName">
<summary>
The requested instance name of the object graph
</summary>
</member>
<member name="T:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression">
<summary>
Expression Builder that has grammars for defining policies at the
PluginType level. This expression is used for registering
open generic types
</summary>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.TheDefaultIsConcreteType(System.Type)">
<summary>
Convenience method that sets the default concrete type of the PluginType. The "concreteType"
can only accept types that do not have any primitive constructor arguments.
StructureMap has to know how to construct all of the constructor argument types.
</summary>
<param name="concreteType"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.Use(StructureMap.Pipeline.Instance)">
<summary>
Use this configured Instance as is
</summary>
<param name="instance"></param>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.Use(System.Type)">
<summary>
Shorter way to call TheDefaultIsConcreteType
</summary>
<param name="concreteType"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.Use(System.Object)">
<summary>
Shortcut to add a value by type
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.AddType(System.Type)">
<summary>
Shortcut method to add an additional Instance to this Plugin Type
as just a Concrete Type. This will only work if the Concrete Type
has no primitive constructor or mandatory Setter arguments.
</summary>
<param name="concreteType"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.Add(System.Type)">
<summary>
Shortcut method to add an additional Instance to this Plugin Type
as just a Concrete Type. This will only work if the Concrete Type
has no primitive constructor or mandatory Setter arguments.
</summary>
<param name="concreteType"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.Add(System.Object)">
<summary>
Configure this type as the supplied value
</summary>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.CacheBy(StructureMap.InstanceScope)">
<summary>
Sets the object creation of the instances of the PluginType. For example: PerRequest,
Singleton, ThreadLocal, HttpContext, or Hybrid
</summary>
<param name="scope"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.OnCreation(System.Action{System.Object})">
<summary>
Register an Action to run against any object of this PluginType immediately after
it is created, but before the new object is passed back to the caller
</summary>
<param name="action"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.EnrichWith(System.Func{System.Object,System.Object})">
<summary>
Register a Func to run against any object of this PluginType immediately after it is created,
but before the new object is passed back to the caller. Unlike <see cref="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.OnCreation(System.Action{System.Object})">OnCreation()</see>,
EnrichWith() gives the the ability to return a different object. Use this method for runtime AOP
scenarios or to return a decorator.
</summary>
<param name="func"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.EnrichWith(System.Func{StructureMap.IContext,System.Object,System.Object})">
<summary>
Register a Func to run against any object of this PluginType immediately after it is created,
but before the new object is passed back to the caller. Unlike <see cref="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.OnCreation(System.Action{System.Object})">OnCreation()</see>,
EnrichWith() gives the the ability to return a different object. Use this method for runtime AOP
scenarios or to return a decorator.
</summary>
<param name="func"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.LifecycleIs(StructureMap.Pipeline.ILifecycle)">
<summary>
Registers an IBuildInterceptor for this Plugin Type that executes before
any object of this PluginType is created. IBuildInterceptor's can be
used to create a custom scope
</summary>
<param name="lifecycle"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.Singleton">
<summary>
Convenience method to mark a PluginFamily as a Singleton
</summary>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.HybridHttpOrThreadLocalScoped">
<summary>
Convenience method to mark a PluginFamily as a Hybrid lifecycle
</summary>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.HttpContextScoped">
<summary>
Convenience method to mark a PluginFamily as HttpContext scoped
</summary>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.LifecycleIs(StructureMap.InstanceScope)">
<summary>
</summary>
<param name="lifecycle"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.AddConcreteType(System.Type)">
<summary>
Shortcut method to add an additional Instance to this Plugin Type
as just a Concrete Type. You can also chain other declarations after
this method to add constructor and setter arguments
</summary>
<param name="concreteType"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.GenericFamilyExpression.AddConcreteType(System.Type,System.String)">
<summary>
Shortcut method to add an additional Instance to this Plugin Type
as just a Concrete Type by a specified name. You can also chain other declarations after
this method to add constructor and setter arguments
</summary>
<param name="concreteType"></param>
<param name="instanceName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.IExplicitProperty.EqualTo(System.Object)">
<summary>
Specify the value of this explicit argument
</summary>
<param name="value"></param>
<returns></returns>
</member>
<member name="M:StructureMap.ExplicitArgsExpression.With``1(``0)">
<summary>
Pass in additional arguments by type T
</summary>
<typeparam name="T"></typeparam>
<param name="arg"></param>
<returns></returns>
</member>
<member name="M:StructureMap.ExplicitArgsExpression.With(System.Type,System.Object)">
<summary>
Pass in additional arguments by type
</summary>
<typeparam name="T"></typeparam>
<param name="arg"></param>
<returns></returns>
</member>
<member name="M:StructureMap.ExplicitArgsExpression.With(System.String)">
<summary>
Pass in additional arguments by name
</summary>
<param name="argName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.ExplicitArgsExpression.GetInstance``1">
<summary>
Gets the default instance of type T using the explicitly configured arguments from the "args"
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.ExplicitArgsExpression.GetInstance``1(System.String)">
<summary>
Gets a named instance of type T using the explicitly configured arguments from teh "args"
</summary>
<typeparam name="T"></typeparam>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:StructureMap.ExplicitArgsExpression.GetInstance(System.Type)">
<summary>
Gets the default instance of the pluginType using the explicitly configured arguments from the "args"
</summary>
<returns></returns>
</member>
<member name="M:StructureMap.ExplicitArgsExpression.GetAllInstances``1">
<summary>
Gets all configured instances of type T using explicitly configured arguments
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.Graph.Constructor.GetConstructor(System.Type)">
<summary>
Returns the System.Reflection.ConstructorInfo for the PluggedType. Uses either
the "greediest" constructor with the most arguments or the constructor function
marked with the [DefaultConstructor]
</summary>
<returns></returns>
</member>
<member name="P:StructureMap.Graph.IPluginFamily.DefaultInstanceKey">
<summary>
The InstanceKey of the default instance of the PluginFamily
</summary>
</member>
<member name="P:StructureMap.Graph.IPluginFamily.PluginType">
<summary>
The CLR Type that defines the "Plugin" interface for the PluginFamily
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.Assembly(System.Reflection.Assembly)">
<summary>
Add an Assembly to the scanning operation
</summary>
<param name="assembly"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.Assembly(System.String)">
<summary>
Add an Assembly by name to the scanning operation
</summary>
<param name="assemblyName"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.TheCallingAssembly">
<summary>
Add the currently executing Assembly to the scanning operation
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AssemblyContainingType``1">
<summary>
Add the Assembly that contains type T to the scanning operation
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AssemblyContainingType(System.Type)">
<summary>
Add the Assembly that contains type to the scanning operation
</summary>
<param name="type"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AssembliesFromPath(System.String)">
<summary>
Sweep the designated path and add any Assembly's found in this folder to the
scanning operation
</summary>
<param name="path"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AssembliesFromPath(System.String,System.Predicate{System.Reflection.Assembly})">
<summary>
Sweep the designated path and add any Assembly's found in this folder to the
scanning operation. The assemblyFilter can be used to filter or limit the
Assembly's that are picked up.
</summary>
<param name="path"></param>
<param name="assemblyFilter"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AssembliesFromApplicationBaseDirectory">
<summary>
Sweep the application base directory of current app domain and add any Assembly's
found to the scanning operation.
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AssembliesFromApplicationBaseDirectory(System.Predicate{System.Reflection.Assembly})">
<summary>
Sweep the application base directory of current app domain and add any Assembly's
found to the scanning operation. The assemblyFilter can be used to filter or limit the
Assembly's that are picked up.
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.With(StructureMap.Graph.ITypeScanner)">
<summary>
Adds an ITypeScanner object to the scanning operation
</summary>
<param name="scanner"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.With``1">
<summary>
Creates and adds a new ITypeScanner of type T to this scanning operation
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.LookForRegistries">
<summary>
Directs the scanning operation to automatically detect and include any Registry
classes found in the Assembly's being scanned
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AddAllTypesOf``1">
<summary>
Add all concrete types of the Plugin Type as Instances of Plugin Type
</summary>
<typeparam name="PLUGINTYPE"></typeparam>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.AddAllTypesOf(System.Type)">
<summary>
Add all concrete types of the Plugin Type as Instances of Plugin Type
</summary>
<param name="pluginType"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.IgnoreStructureMapAttributes">
<summary>
Makes this scanning operation ignore all [PluginFamily] and [Pluggable] attributes
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.Exclude(System.Func{System.Type,System.Boolean})">
<summary>
Exclude types that match the Predicate from being scanned
</summary>
<param name="exclude"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.ExcludeNamespace(System.String)">
<summary>
Exclude all types in this nameSpace or its children from the scanning operation
</summary>
<param name="nameSpace"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.ExcludeNamespaceContainingType``1">
<summary>
Exclude all types in this nameSpace or its children from the scanning operation
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.Include(System.Func{System.Type,System.Boolean})">
<summary>
Only include types matching the Predicate in the scanning operation. You can
use multiple Include() calls in a single scanning operation
</summary>
<param name="predicate"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.IncludeNamespace(System.String)">
<summary>
Only include types from this nameSpace or its children in the scanning operation. You can
use multiple Include() calls in a single scanning operation
</summary>
<param name="nameSpace"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.IncludeNamespaceContainingType``1">
<summary>
Only include types from this nameSpace or its children in the scanning operation. You can
use multiple Include() calls in a single scanning operation
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.ExcludeType``1">
<summary>
Exclude this specific type from the scanning operation
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.Convention``1">
<summary>
Adds a registration convention to be applied to all the types in this
logical "scan" operation
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.With(StructureMap.Graph.IRegistrationConvention)">
<summary>
Adds a registration convention to be applied to all the types in this
logical "scan" operation
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.WithDefaultConventions">
<summary>
Adds the DefaultConventionScanner to the scanning operations. I.e., a concrete
class named "Something" that implements "ISomething" will be automatically
added to PluginType "ISomething"
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.ConnectImplementationsToTypesClosing(System.Type)">
<summary>
Scans for PluginType's and Concrete Types that close the given open generic type
</summary>
<example>
</example>
<param name="openGenericType"></param>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.RegisterConcreteTypesAgainstTheFirstInterface">
<summary>
Automatically registers all concrete types without primitive arguments
against its first interface, if any
</summary>
</member>
<member name="M:StructureMap.Graph.IAssemblyScanner.SingleImplementationsOfInterface">
<summary>
Directs the scanning to automatically register any type that is the single
implementation of an interface against that interface.
The filters apply
</summary>
</member>
<member name="M:StructureMap.Graph.AssemblyScanner.WithDefaultConventions">
<summary>
Adds the DefaultConventionScanner to the scanning operations. I.e., a concrete
class named "Something" that implements "ISomething" will be automatically
added to PluginType "ISomething"
</summary>
</member>
<member name="M:StructureMap.Graph.AssemblyScanner.ConnectImplementationsToTypesClosing(System.Type)">
<summary>
Scans for PluginType's and Concrete Types that close the given open generic type
</summary>
<example>
</example>
<param name="openGenericType"></param>
</member>
<member name="M:StructureMap.Graph.AssemblyScanner.RegisterConcreteTypesAgainstTheFirstInterface">
<summary>
Automatically registers all concrete types without primitive arguments
against its first interface, if any
</summary>
</member>
<member name="M:StructureMap.Graph.AssemblyScanner.SingleImplementationsOfInterface">
<summary>
Directs the scanning to automatically register any type that is the single
implementation of an interface against that interface.
The filters apply
</summary>
</member>
<member name="T:StructureMap.Interceptors.TypeInterceptor">
<summary>
A TypeInterceptor that is only applied if the MatchesType()
method is true for a given Type
</summary>
</member>
<member name="T:StructureMap.Interceptors.InstanceInterceptor">
<summary>
An InstanceInterceptor can be registered on a per-Instance basis
to act on, or even replace, the object that is created before
it is passed back to the caller. This is primarily a hook
for runtime AOP scenarios.
</summary>
</member>
<member name="M:StructureMap.Interceptors.TypeInterceptor.MatchesType(System.Type)">
<summary>
Does this TypeInterceptor apply to the given type?
</summary>
<param name="type"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Interceptors.MatchedTypeInterceptor.InterceptWith(System.Func{System.Object,System.Object})">
<summary>
Specify how objects matching the Type predicate
will be intercepted
</summary>
<param name="interception"></param>
</member>
<member name="M:StructureMap.Interceptors.MatchedTypeInterceptor.InterceptWith(System.Func{StructureMap.IContext,System.Object,System.Object})">
<summary>
Specify how objects matching the Type predicate
will be intercepted
</summary>
<param name="interception"></param>
</member>
<member name="F:StructureMap.PipelineGraph._missingFactory">
<summary>
Used for auto-mocking container. When the factory is missing, we can generate a mock for it
</summary>
</member>
<member name="T:StructureMap.Pipeline.ConfiguredInstance">
<summary>
An Instance class that builds objects by calling a constructor function on a concrete type
and filling setter properties. ConfiguredInstance should only be used for open generic types.
Favor <see cref="T:StructureMap.Pipeline.SmartInstance`1">SmartInstance{T}</see> for all other usages.
</summary>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.OnCreation``1(System.Action{``0})">
<summary>
Register an Action to perform on the object created by this Instance
before it is returned to the caller
</summary>
<typeparam name="TYPE"></typeparam>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.OnCreation``1(System.Action{StructureMap.IContext,``0})">
<summary>
Register an Action to perform on the object created by this Instance
before it is returned to the caller
</summary>
<typeparam name="TYPE"></typeparam>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.EnrichWith``1(StructureMap.Interceptors.EnrichmentHandler{``0})">
<summary>
Register a Func to potentially enrich or substitute for the object
created by this Instance before it is returned to the caller
</summary>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.EnrichWith``1(StructureMap.Interceptors.ContextEnrichmentHandler{``0})">
<summary>
Register a Func to potentially enrich or substitute for the object
created by this Instance before it is returned to the caller
</summary>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildArray``1(System.String)">
<summary>
Inline definition of a dependency array like IService[] or IHandler[]
</summary>
<typeparam name="PLUGINTYPE"></typeparam>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildArray(System.String)">
<summary>
Inline definition of a dependency array like IService[] or IHandler[]
</summary>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildArray``1">
<summary>
Inline definition of a dependency array like IService[] or IHandler[]
</summary>
<typeparam name="PLUGINTYPE"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.Child``1">
<summary>
Start the definition of a child instance for type CONSTRUCTORARGUMENTTYPE
</summary>
<typeparam name="CONSTRUCTORARGUMENTTYPE"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.Child(System.Type)">
<summary>
Start the definition of a child instance for type CONSTRUCTORARGUMENTTYPE
</summary>
<typeparam name="CONSTRUCTORARGUMENTTYPE"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.Child(System.String)">
<summary>
Inline definition of a constructor or a setter property dependency
</summary>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.Child``1(System.String)">
<summary>
Starts the definition of a child instance specifying the argument name
in the case of a constructor function that consumes more than one argument
of type T
</summary>
<typeparam name="CONSTRUCTORARGUMENTTYPE"></typeparam>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.CtorDependency``1(System.String)">
<summary>
Inline definition of a constructor dependency
</summary>
<typeparam name="CONSTRUCTORARGUMENTTYPE"></typeparam>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.SetterDependency``1(System.String)">
<summary>
Inline definition of a setter dependency
</summary>
<typeparam name="CONSTRUCTORARGUMENTTYPE"></typeparam>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.WithProperty(System.String)">
<summary>
Start the definition of a primitive argument to a constructor argument
</summary>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.WithCtorArg(System.String)">
<summary>
Configure a primitive constructor argument
</summary>
<param name="propertyName"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildArrayExpression.Contains(StructureMap.Pipeline.Instance[])">
<summary>
Configures an array of Instance's for the array dependency
</summary>
<param name="instances"></param>
<returns></returns>
</member>
<member name="T:StructureMap.Pipeline.ConfiguredInstance.ChildInstanceExpression">
<summary>
Part of the Fluent Interface, represents a nonprimitive argument to a
constructure function
</summary>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildInstanceExpression.IsNamedInstance(System.String)">
<summary>
Use a previously configured and named instance for the child
</summary>
<param name="instanceKey"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildInstanceExpression.IsConcreteType``1">
<summary>
Start the definition of a child instance by defining the concrete type
</summary>
<typeparam name="T"></typeparam>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildInstanceExpression.IsConcreteType(System.Type)">
<summary>
Start the definition of a child instance by defining the concrete type
</summary>
<param name="pluggedType"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildInstanceExpression.Is(StructureMap.Pipeline.Instance)">
<summary>
Registers a configured instance to use as the argument to the parent's
constructor
</summary>
<param name="child"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ConfiguredInstance.ChildInstanceExpression.IsAutoFilled">
<summary>
Directs StructureMap to fill this dependency with the Default Instance of the
constructor or property type
</summary>
<returns></returns>
</member>
<member name="T:StructureMap.Pipeline.ExpressedInstance`1">
<summary>
Base class for many of the Instance subclasses to support
method chaining in the Registry DSL for common options
</summary>
<typeparam name="T"></typeparam>
</member>
<member name="M:StructureMap.Pipeline.ExpressedInstance`1.WithName(System.String)">
<summary>
Set the name of this Instance
</summary>
<param name="instanceKey"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ExpressedInstance`1.OnCreation``1(System.Action{``0})">
<summary>
Register an Action to perform on the object created by this Instance
before it is returned to the caller
</summary>
<typeparam name="TYPE"></typeparam>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ExpressedInstance`1.EnrichWith``1(StructureMap.Interceptors.EnrichmentHandler{``0})">
<summary>
Register a Func to potentially enrich or substitute for the object
created by this Instance before it is returned to the caller
</summary>
<typeparam name="TYPE"></typeparam>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ExpressedInstance`1.EnrichWith``1(StructureMap.Interceptors.ContextEnrichmentHandler{``0})">
<summary>
Register a Func to potentially enrich or substitute for the object
created by this Instance before it is returned to the caller
</summary>
<typeparam name="TYPE"></typeparam>
<param name="handler"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Pipeline.ExpressedInstance`1.InterceptWith(StructureMap.Interceptors.InstanceInterceptor)">
<summary>
Register an <see cref="T:StructureMap.Interceptors.InstanceInterceptor">InstanceInterceptor</see> with this Instance
</summary>
<param name="interceptor"></param>
<returns></returns>
</member>
<member name="T:StructureMap.DefaultConstructorAttribute">
<summary>
Used to override the constructor of a class to be used by StructureMap to create
a Pluggable object
</summary>
</member>
<member name="M:StructureMap.DefaultConstructorAttribute.GetConstructor(System.Type)">
<summary>
Examines a System.Type object and determines the ConstructorInfo to use in creating
instances of the Type
</summary>
<param name="ExportedType"></param>
<returns></returns>
</member>
<member name="T:StructureMap.PluggableAttribute">
<summary>
Used to implicitly mark a class as a Plugin candidate for StructureMap
</summary>
</member>
<member name="M:StructureMap.PluggableAttribute.MarkedAsPluggable(System.Type)">
<summary>
Determines whether a Type object is marked as Pluggable
</summary>
<param name="objectType"></param>
<returns></returns>
</member>
<member name="P:StructureMap.PluggableAttribute.ConcreteKey">
<summary>
The ConcreteKey alias of the Type
</summary>
</member>
<member name="T:StructureMap.PluginFamilyAttribute">
<summary>
Declares a class, abstract class, or interface to be the target of a PluginFamily in the container
</summary>
</member>
<member name="M:StructureMap.PluginFamilyAttribute.MarkedAsPluginFamily(System.Type)">
<summary>
Determines if a Type object is marked as a PluginFamily
</summary>
<param name="objectType"></param>
<returns></returns>
</member>
<member name="P:StructureMap.PluginFamilyAttribute.Scope">
<summary>
If set, determines the shared "scope" of the instance -- PerRequest, Singleton, ThreadLocal,
HttpContext, etc.
</summary>
</member>
<member name="P:StructureMap.PluginFamilyAttribute.DefaultKey">
<summary>
InstanceKey of the default instance. Used to implicitly define the default without
declaring the instance in StructureMap.config
</summary>
</member>
<member name="P:StructureMap.PluginFamilyAttribute.IsSingleton">
<summary>
Declares the target to be built by StructureMap as a Singleton. One object instance will
be created for each named instance
</summary>
</member>
<member name="T:StructureMap.Attributes.SetterPropertyAttribute">
<summary>
Marks a Property in a Pluggable class as filled by setter injection
</summary>
</member>
<member name="T:StructureMap.ValidationMethodAttribute">
<summary>
Marks a method with no parameters as a method that validates an instance. StructureMap
uses this method to validate the configuration file. If the method does not throw an
exception, the object is assumed to be valid.
</summary>
</member>
<member name="M:StructureMap.ValidationMethodAttribute.GetValidationMethods(System.Type)">
<summary>
Returns an array of any MethodInfo's on a Type that are marked as ValidationMethod
</summary>
<param name="objectType">CLR Type to search for validation methods</param>
<returns></returns>
</member>
<member name="T:StructureMap.Configuration.XmlConstants">
<summary>
Constants for the names of Xml nodes and attributes in the StructureMap.config
file
</summary>
</member>
<member name="F:StructureMap.Configuration.ConfigurationParserBuilder.DefaultConfigurationFilename">
<summary>
The name of the default configuration file. The value is always <c>StructurMap.config</c>
</summary>
</member>
<member name="M:StructureMap.Configuration.ConfigurationParserBuilder.GetStructureMapConfigurationPath">
<summary>
Returns the absolute path to the StructureMap.config file
</summary>
<returns></returns>
</member>
<member name="T:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1">
<summary>
Expression Builder that has grammars for defining policies at the
PluginType level
</summary>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.AddInstances(System.Action{StructureMap.Configuration.DSL.Expressions.IInstanceExpression{`0}})">
<summary>
Add multiple Instance's to this PluginType
</summary>
<param name="action"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.ConditionallyUse(System.Action{StructureMap.Pipeline.ConditionalInstance{`0}.ConditionalInstanceExpression})">
<summary>
Conditional binding of instances
</summary>
<param name="configuration"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.UseSpecial(System.Action{StructureMap.Configuration.DSL.Expressions.IInstanceExpression{`0}})">
<summary>
Access to all of the uncommon Instance types
</summary>
<param name="configure"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.AddSpecial(System.Action{StructureMap.Configuration.DSL.Expressions.IInstanceExpression{`0}})">
<summary>
Access to all of the uncommon Instance types
</summary>
<param name="configure"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.TheDefaultIsConcreteType``1">
<summary>
Convenience method that sets the default concrete type of the PluginType. Type T
can only accept types that do not have any primitive constructor arguments.
StructureMap has to know how to construct all of the constructor argument types.
</summary>
<typeparam name="CONCRETETYPE"></typeparam>
<returns></returns>
</member>
<!-- Badly formed XML comment ignored for member "M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.Use``1" -->
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.Use(System.Func{StructureMap.IContext,`0})">
<summary>
Shorthand to say TheDefault.Is.ConstructedBy(func)
</summary>
<param name="func"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.Use(System.Func{`0})">
<summary>
Shorthand to say TheDefault.Is.ConstructedBy(func)
</summary>
<param name="func"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.Use(`0)">
<summary>
Shorthand to say TheDefault.IsThis(@object)
</summary>
<param name="object"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.CacheBy(StructureMap.InstanceScope)">
<summary>
Sets the object creation of the instances of the PluginType. For example: PerRequest,
Singleton, ThreadLocal, HttpContext, or Hybrid
</summary>
<param name="scope"></param>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.Singleton">
<summary>
Convenience method to mark a PluginFamily as a Singleton
</summary>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.Transient">
<summary>
Convenience method to mark a PluginFamily as a Transient
</summary>
<returns></returns>
</member>
<member name="M:StructureMap.Configuration.DSL.Expressions.CreatePluginFamilyExpression`1.HybridHttpOrThreadLocalScoped">
<summary>
Convenience method to mark a PluginFamily as a Hybrid lifecycle
</summary>
<returns></returns>