forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHiro.Core.xml
More file actions
2012 lines (2012 loc) · 122 KB
/
Hiro.Core.xml
File metadata and controls
2012 lines (2012 loc) · 122 KB
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>Hiro.Core</name>
</assembly>
<members>
<member name="T:Hiro.Compilers.AssemblyBuilder">
<summary>
Represents a class that can create <see cref="T:Mono.Cecil.AssemblyDefinition"/> instances.
</summary>
</member>
<member name="M:Hiro.Compilers.AssemblyBuilder.CreateAssembly(System.String,Mono.Cecil.AssemblyKind)">
<summary>
Creates an assembly.
</summary>
<param name="assemblyName">The name of the assembly.</param>
<param name="assemblyKind">The assembly type.</param>
<returns>An assembly.</returns>
</member>
<member name="T:Hiro.Compilers.ContainerTypeBuilder">
<summary>
Represents a class that can create other types.
</summary>
</member>
<member name="T:Hiro.Compilers.TypeBuilder">
<summary>
Represents the basic implementation for a type builder class.
</summary>
</member>
<member name="M:Hiro.Compilers.TypeBuilder.CreateType(System.String,System.String,Mono.Cecil.TypeReference,Mono.Cecil.AssemblyDefinition,Mono.Cecil.TypeReference[])">
<summary>
Creates a class type.
</summary>
<param name="typeName">The class name.</param>
<param name="namespaceName">The namespace name.</param>
<param name="baseType">The base type</param>
<param name="assembly">The assembly that will contain the type</param>
<param name="interfaces">The list of interfaces that the type will implement.</param>
<returns>A <see cref="T:Mono.Cecil.TypeDefinition"/> instance.</returns>
</member>
<member name="M:Hiro.Compilers.TypeBuilder.AddInterfaces(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeDefinition)">
<summary>
Adds additional interfaces to the target type.
</summary>
<param name="module">The host module.</param>
<param name="containerType">The container type.</param>
</member>
<member name="M:Hiro.Compilers.ContainerTypeBuilder.AddInterfaces(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeDefinition)">
<summary>
Adds additional interfaces to the target type.
</summary>
<param name="module">The host module.</param>
<param name="containerType">The container type.</param>
</member>
<member name="T:Hiro.Compilers.ContainsMethodImplementor">
<summary>
Represents the default implementation of the <see cref="T:Hiro.Interfaces.IContainsMethodImplementor"/> class.
</summary>
</member>
<member name="T:Hiro.Interfaces.IContainsMethodImplementor">
<summary>
Represents a class that implements the <see cref="M:Hiro.Containers.IMicroContainer.Contains(System.Type,System.String)"/> method.
</summary>
</member>
<member name="M:Hiro.Interfaces.IContainsMethodImplementor.DefineContainsMethod(Mono.Cecil.TypeDefinition,Mono.Cecil.ModuleDefinition,Mono.Cecil.MethodDefinition,Mono.Cecil.FieldDefinition)">
<summary>
Emits the body of the <see cref="M:Hiro.Containers.IMicroContainer.Contains(System.Type,System.String)"/> method implementation.
</summary>
<param name="containerType">The container type.</param>
<param name="module">The target module.</param>
<param name="getServiceHash">The method that will be used to determine the hash code of the current service.</param>
<param name="jumpTargetField">The field that contains the list of jump entries.</param>
</member>
<member name="M:Hiro.Compilers.ContainsMethodImplementor.DefineContainsMethod(Mono.Cecil.TypeDefinition,Mono.Cecil.ModuleDefinition,Mono.Cecil.MethodDefinition,Mono.Cecil.FieldDefinition)">
<summary>
Emits the body of the <see cref="M:Hiro.Containers.IMicroContainer.Contains(System.Type,System.String)"/> method implementation.
</summary>
<param name="containerType">The container type.</param>
<param name="module">The target module.</param>
<param name="getServiceHash">The method that will be used to determine the hash code of the current service.</param>
<param name="jumpTargetField">The field that contains the list of jump entries.</param>
</member>
<member name="T:Hiro.Compilers.CreateContainerStub">
<summary>
Represents a class that creates a <see cref="T:Hiro.Containers.IMicroContainer"/> implementation.
</summary>
</member>
<member name="T:Hiro.Interfaces.ICreateContainerType">
<summary>
Represents a type that can create a <see cref="T:Hiro.Containers.IMicroContainer"/> implementation.
</summary>
</member>
<member name="M:Hiro.Interfaces.ICreateContainerType.CreateContainerType(System.String,System.String,System.String)">
<summary>
Creates a <see cref="T:Hiro.Containers.IMicroContainer"/> implementation.
</summary>
<param name="typeName">The name of the new container type.</param>
<param name="namespaceName">The namespace of the container type.</param>
<param name="assemblyName">The name of the container assembly.</param>
<returns>A <see cref="T:Mono.Cecil.TypeDefinition"/> with a stubbed <see cref="T:Hiro.Containers.IMicroContainer"/> implementation.</returns>
</member>
<member name="M:Hiro.Compilers.CreateContainerStub.CreateContainerType(System.String,System.String,System.String)">
<summary>
Creates a stub <see cref="T:Hiro.Containers.IMicroContainer"/> implementation.
</summary>
<param name="typeName">The name of the new container type.</param>
<param name="namespaceName">The namespace of the container type.</param>
<param name="assemblyName">The name of the container assembly.</param>
<returns>A <see cref="T:Mono.Cecil.TypeDefinition"/> with a stubbed <see cref="T:Hiro.Containers.IMicroContainer"/> implementation.</returns>
</member>
<member name="T:Hiro.Compilers.FieldBuilder">
<summary>
Represents a class that adds a <see cref="T:Mono.Cecil.FieldDefinition"/> to a target type.
</summary>
</member>
<member name="M:Hiro.Compilers.FieldBuilder.AddField(Mono.Cecil.TypeDefinition,System.String,Mono.Cecil.TypeReference)">
<summary>
Adds a <see cref="T:Mono.Cecil.FieldDefinition"/> to a target type.
</summary>
<param name="targetType">The target type.</param>
<param name="fieldName">The field name.</param>
<param name="fieldType">The field type.</param>
<returns>The newly-created field.</returns>
</member>
<member name="T:Hiro.Interfaces.IGetAllInstancesMethodImplementor">
<summary>
Represents a class that implements the <see cref="M:Hiro.Containers.IMicroContainer.GetAllInstances(System.Type)"/> method.
</summary>
</member>
<member name="M:Hiro.Interfaces.IGetAllInstancesMethodImplementor.DefineGetAllInstancesMethod(Mono.Cecil.TypeDefinition,Mono.Cecil.ModuleDefinition,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation})">
<summary>
Emits the body of the <see cref="M:Hiro.Containers.IMicroContainer.GetAllInstances(System.Type)"/> method implementation.
</summary>
<param name="containerType">The container type.</param>
<param name="module">The target module.</param>
<param name="serviceMap">The service map that contains the list of dependencies that will be emitted into the method.</param>
</member>
<member name="T:Hiro.Compilers.GetInstanceMethodImplementor">
<summary>
Represents the default implementation of the <see cref="T:Hiro.Interfaces.IGetInstanceMethodImplementor"/> interface.
</summary>
</member>
<member name="T:Hiro.Interfaces.IGetInstanceMethodImplementor">
<summary>
Represents a type that can implement the <see cref="M:Hiro.Containers.IMicroContainer.GetInstance(System.Type,System.String)"/> method.
</summary>
</member>
<member name="M:Hiro.Interfaces.IGetInstanceMethodImplementor.DefineGetInstanceMethod(Mono.Cecil.TypeDefinition,Mono.Cecil.ModuleDefinition,Mono.Cecil.MethodDefinition,Mono.Cecil.FieldDefinition,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation})">
<summary>
Defines the <see cref="M:Hiro.Containers.IMicroContainer.GetInstance(System.Type,System.String)"/> method implementation for the container type.
</summary>
<param name="containerType">The container type.</param>
<param name="module">The target module.</param>
<param name="getServiceHash">The GetServiceHash method.</param>
<param name="jumpTargetField">The field that will store the jump target indexes.</param>
<param name="serviceMap">The service map that contains the list of existing services.</param>
</member>
<member name="M:Hiro.Compilers.GetInstanceMethodImplementor.DefineGetInstanceMethod(Mono.Cecil.TypeDefinition,Mono.Cecil.ModuleDefinition,Mono.Cecil.MethodDefinition,Mono.Cecil.FieldDefinition,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation})">
<summary>
Defines the <see cref="M:Hiro.Containers.IMicroContainer.GetInstance(System.Type,System.String)"/> method implementation for the container type.
</summary>
<param name="containerType">The container type.</param>
<param name="module">The target module.</param>
<param name="getServiceHash">The GetServiceHash method.</param>
<param name="jumpTargetField">The field that will store the jump target indexes.</param>
<param name="serviceMap">The service map that contains the list of existing services.</param>
</member>
<member name="M:Hiro.Compilers.GetInstanceMethodImplementor.EmitService(Mono.Cecil.MethodDefinition,Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation})">
<summary>
Emits the instructions that will instantiate the target service.
</summary>
<param name="getInstanceMethod">The method that will instantiate the target type.</param>
<param name="dependency">The target dependency</param>
<param name="implementation">The implementation that will instantiate the dependency.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
</member>
<member name="M:Hiro.Compilers.GetInstanceMethodImplementor.DefineServices(System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition,Mono.Cecil.Cil.CilWorker)">
<summary>
Defines the instructions that create each service type in the <paramref name="serviceMap"/>.
</summary>
<param name="serviceMap">The service map that contains the list of application dependencies.</param>
<param name="getInstanceMethod">The method that will be used to instantiate the service types.</param>
<param name="worker">The <see cref="T:Mono.Cecil.Cil.CilWorker"/> that points to the body of the factory method.</param>
</member>
<member name="T:Hiro.Compilers.InterfaceStubBuilder">
<summary>
A class that can generate a stub implementation for any given interface type.
</summary>
</member>
<member name="M:Hiro.Compilers.InterfaceStubBuilder.AddStubImplementationFor(System.Type,Mono.Cecil.TypeDefinition)">
<summary>
Implements each one of the methods in the given <paramref name="interfaceType"/>.
</summary>
<remarks>By default, each implemented method will throw a <see cref="T:System.NotImplementedException"/>.</remarks>
<param name="interfaceType">The interface type.</param>
<param name="type">The host type.</param>
<returns>The list of stubbed methods.</returns>
</member>
<member name="M:Hiro.Compilers.InterfaceStubBuilder.CreateInterfaceStub(System.Type,Mono.Cecil.TypeDefinition)">
<summary>
Overrides all methods in the given interface type with methods that throw a <see cref="T:System.NotImplementedException"/>.
</summary>
<param name="interfaceType">The interface type that will be implemented by the target type.</param>
<param name="type">The target type.</param>
<returns>The list of stubbed methods.</returns>
</member>
<member name="M:Hiro.Compilers.InterfaceStubBuilder.CreateMethodStub(Mono.Cecil.TypeDefinition,Mono.Cecil.ModuleDefinition,Hiro.Compilers.MethodOverrider,System.Reflection.MethodInfo)">
<summary>
Overrides the target <paramref name="method"/> with a method that throws a <see cref="T:System.NotImplementedException"/>.
</summary>
<param name="type">The target type.</param>
<param name="module">The host module.</param>
<param name="overrider">The <see cref="T:Hiro.Compilers.MethodOverrider"/> that will be used to override the target method.</param>
<param name="method">The target method.</param>
<returns>The stubbed method.</returns>
</member>
<member name="T:Hiro.Compilers.MethodBuilder">
<summary>
Represents a type that can create methods.
</summary>
</member>
<member name="M:Hiro.Compilers.MethodBuilder.CreateMethod(Hiro.Compilers.MethodBuilderOptions)">
<summary>
Creates a method on the given host type.
</summary>
<param name="options">The method options object that describes the method to be created.</param>
<returns>A method definition.</returns>
</member>
<member name="T:Hiro.Compilers.MethodBuilderOptions">
<summary>
Represents a class that describes the options for creating a target method.
</summary>
</member>
<member name="M:Hiro.Compilers.MethodBuilderOptions.SetMethodParameters(System.Type[])">
<summary>
Assigns parameters to the target method.
</summary>
<param name="parameterTypes">The method parameter types.</param>
</member>
<member name="P:Hiro.Compilers.MethodBuilderOptions.MethodName">
<summary>
Gets or sets the value indicating the method name.
</summary>
<value>The method name.</value>
</member>
<member name="P:Hiro.Compilers.MethodBuilderOptions.ReturnType">
<summary>
Gets or sets the value indicating the method return type.
</summary>
<value>The method return type.</value>
</member>
<member name="P:Hiro.Compilers.MethodBuilderOptions.IsPublic">
<summary>
Gets or sets a value indicating whether or not the method is publicly visible.
</summary>
<value>A boolean value indicating whether or not the method is public.</value>
</member>
<member name="P:Hiro.Compilers.MethodBuilderOptions.IsStatic">
<summary>
Gets or sets a value indicating whether or not the method is marked as static.
</summary>
<value>The static method flag.</value>
</member>
<member name="P:Hiro.Compilers.MethodBuilderOptions.HostType">
<summary>
Gets or sets a value indicating the type that will hold the newly-created method.
</summary>
<value>The method host.</value>
</member>
<member name="P:Hiro.Compilers.MethodBuilderOptions.ParameterTypes">
<summary>
Gets a value indicating the list of method parameters.
</summary>
<value>The list of parameters for the new method.</value>
</member>
<member name="T:Hiro.Compilers.MethodOverrider">
<summary>
Represents a type that adds method overrides for interface methods.
</summary>
</member>
<member name="M:Hiro.Compilers.MethodOverrider.AddOverrideFor(System.Reflection.MethodInfo,Mono.Cecil.TypeDefinition)">
<summary>
Adds a method override for a particular <paramref name="targetMethod"/>.
</summary>
<param name="targetMethod">The target method.</param>
<param name="hostType">The type that will host the new method.</param>
<returns>The overridden method.</returns>
</member>
<member name="T:Hiro.Compilers.ServiceHashEmitter">
<summary>
Rrepesnts a class that adds a GetServiceHashCode method to a target type.
</summary>
</member>
<member name="M:Hiro.Compilers.ServiceHashEmitter.AddGetServiceHashMethodTo(Mono.Cecil.TypeDefinition,System.Boolean)">
<summary>
Adds a GetServiceHashCode method to a target type.
</summary>
<param name="targetType">The target type.</param>
<param name="shouldBeVisible">A boolean flag that indicates whether or not the method should be public.</param>
<returns>The GetServiceHashCode method.</returns>
</member>
<member name="M:Hiro.Compilers.ServiceHashEmitter.EmitGetServiceNameHashCode(Mono.Cecil.Cil.CilWorker,Mono.Cecil.MethodReference,Mono.Cecil.Cil.VariableDefinition)">
<summary>
Emits the IL that calculates a hash code from a given service name.
</summary>
<param name="worker">The <see cref="T:Mono.Cecil.Cil.CilWorker"/> that will be used to emit the instructions.</param>
<param name="getHashCodeMethod">The <see cref="M:System.Object.GetHashCode"/> method.</param>
<param name="hashVariable">The local variable that will store the hash code.</param>
</member>
<member name="M:Hiro.Compilers.ServiceHashEmitter.EmitGetServiceTypeHashCode(Mono.Cecil.ModuleDefinition,Mono.Cecil.Cil.MethodBody,Mono.Cecil.Cil.CilWorker,Mono.Cecil.MethodReference)">
<summary>
Emits the IL that calculates a hash code from a given service type.
</summary>
<param name="module">The module that holds the target type.</param>
<param name="body">The body of the GetServiceHashCode method.</param>
<param name="worker">The <see cref="T:Mono.Cecil.Cil.CilWorker"/> that will be used to emit the instructions.</param>
<param name="getHashCodeMethod">The <see cref="M:System.Object.GetHashCode"/> method.</param>
<returns>The variable that holds the hash code.</returns>
</member>
<member name="M:Hiro.Compilers.ServiceHashEmitter.AddLocals(Mono.Cecil.ModuleDefinition,Mono.Cecil.Cil.MethodBody)">
<summary>
Adds the necessary local variables to the GetServiceHashCode method.
</summary>
<param name="module">The target module.</param>
<param name="body">The method body of the GetServiceHashCode method.</param>
<returns>The variable that holds the hash code.</returns>
</member>
<member name="M:Hiro.Compilers.ServiceHashEmitter.DefineOptions(Mono.Cecil.TypeDefinition,System.Boolean,Hiro.Compilers.MethodBuilderOptions)">
<summary>
Sets the default method options for the GetServiceHashCode method.
</summary>
<param name="targetType">The targe type.</param>
<param name="shouldBeVisible">A boolean flag that determines whether or not the method should be publicly visible.</param>
<param name="options">The <see cref="T:Hiro.Compilers.MethodBuilderOptions"/> object to be modified.</param>
</member>
<member name="T:Hiro.Compilers.ServiceMapBuilder">
<summary>
Represents the default implementation of the <see cref="T:Hiro.Interfaces.IServiceMapBuilder"/> interface.
</summary>
</member>
<member name="T:Hiro.Interfaces.IServiceMapBuilder">
<summary>
Represents a type that can create service map instances from a given <see cref="T:Hiro.Interfaces.IDependencyContainer"/>.
</summary>
</member>
<member name="M:Hiro.Interfaces.IServiceMapBuilder.GetAvailableServices(Hiro.Interfaces.IDependencyContainer)">
<summary>
Obtains the list of available services from the given <paramref name="dependencyContainer"/>.
</summary>
<param name="dependencyContainer">The container that contains the list of services.</param>
<returns>A dictionary that maps dependencies to their respective implementations.</returns>
</member>
<member name="M:Hiro.Compilers.ServiceMapBuilder.GetAvailableServices(Hiro.Interfaces.IDependencyContainer)">
<summary>
Gets the list of available services from the given dependency container.
</summary>
<param name="dependencyContainer">The container that holds the application dependencies.</param>
<returns>The service map.</returns>
</member>
<member name="T:Hiro.Compilers.SingletonEmitter">
<summary>
Represents a class that creates singleton services.
</summary>
</member>
<member name="F:Hiro.Compilers.SingletonEmitter._entries">
<summary>
The dictionary that maps dependencies to the corresponding singleton factory methods.
</summary>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.EmitService(Mono.Cecil.MethodDefinition,Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation})">
<summary>
Emits a service as a singleton type.
</summary>
<param name="newMethod">The <see cref="M:Hiro.Containers.IMicroContainer.GetInstance(System.Type,System.String)"/> method implementation.</param>
<param name="dependency">The dependency that will be instantiated by the container.</param>
<param name="implementation">The implementation that will be used to instantiate the dependency.</param>
<param name="serviceMap">The service map the contains the current application dependencies.</param>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.AddDefaultSingletonConstructor(Mono.Cecil.ModuleDefinition,System.String,Mono.Cecil.TypeAttributes,Mono.Cecil.TypeReference)">
<summary>
Adds a default constructor to the singleton type.
</summary>
<param name="module">The module that will host the singleton type.</param>
<param name="singletonName">The name of the singleton.</param>
<param name="typeAttributes">The type attributes that describes the singleton type.</param>
<param name="objectType">The object ty pe.</param>
<returns>A <see cref="T:Mono.Cecil.TypeDefinition"/> that represents the singleton type.</returns>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.DefineNestedType(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeDefinition,Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.TypeReference,Mono.Cecil.TypeDefinition,Mono.Cecil.FieldDefinition)">
<summary>
Defines the nested type that will instantiate the actual singleton service instance.
</summary>
<param name="module">The module that will host the singleton type.</param>
<param name="containerType">The container type.</param>
<param name="dependency">The dependency that will be instantiated by the singleton.</param>
<param name="implementation">The implementation that will instantiate the dependency.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="objectType">The object type.</param>
<param name="singletonType">The singleton type.</param>
<param name="instanceField">The field that will hold the singleton instance.</param>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.DefineNestedStaticConstructorBody(Mono.Cecil.ModuleDefinition,Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.FieldDefinition,Mono.Cecil.MethodDefinition,Mono.Cecil.Cil.VariableDefinition,Mono.Cecil.MethodDefinition)">
<summary>
Defines the instructions that will instantiate the singleton instance itself.
</summary>
<param name="module">The module that will host the singleton type.</param>
<param name="dependency">The dependency that will be instantiated by the singleton.</param>
<param name="implementation">The implementation that will instantiate the dependency.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="instanceField">The field that will hold the singleton instance.</param>
<param name="cctor">The static constructor itself.</param>
<param name="containerLocal">The local variable that will hold the container instance.</param>
<param name="containerConstructor">The constructor that will be used to instantiate the container.</param>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.DefineNestedConstructors(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeDefinition)">
<summary>
Defines the nested constructors for the singleton type.
</summary>
<param name="module">The target module.</param>
<param name="nestedType">The nested type.</param>
<returns>The static singleton constructor.</returns>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.ReplaceContainerCalls(Mono.Cecil.MethodDefinition,Mono.Cecil.Cil.VariableDefinition,Mono.Cecil.Cil.CilWorker)">
<summary>
Converts the self calls made to the <see cref="M:Hiro.Containers.IMicroContainer.GetInstance(System.Type,System.String)"/> instance into method calls that use
a <see cref="T:Hiro.Containers.IMicroContainer"/> instance stored in a local variable.
</summary>
<param name="cctor">The static constructor.</param>
<param name="containerLocal">The variable that will store the <see cref="T:Hiro.Containers.IMicroContainer"/> instance.</param>
<param name="worker">The worker that points to the target method body.</param>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.DefineStaticConstructor(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeDefinition)">
<summary>
Defines the static constructor for the nested type.
</summary>
<param name="module">The target module.</param>
<param name="nestedType">The nested type itself.</param>
<returns>The nested static constructor itself.</returns>
</member>
<member name="M:Hiro.Compilers.SingletonEmitter.DefineGetInstance(Mono.Cecil.TypeDefinition,Mono.Cecil.Cil.CilWorker,Mono.Cecil.FieldDefinition)">
<summary>
Defines the factory method on the singleton type.
</summary>
<param name="singletonType">The singleton type that will be generated by the emitter.</param>
<param name="worker">The <see cref="T:Mono.Cecil.Cil.CilWorker"/> instance that points to the target method body.</param>
<param name="instanceField">The static field that holds the singleton instance.</param>
<returns>The singleton type's GetInstance method.</returns>
</member>
<member name="T:Hiro.Implementations.BaseContainerCall">
<summary>
Represents a class that provides the basic fuctionality for a compiled <see cref="T:Hiro.Containers.IMicroContainer"/> instance to compile itself.
</summary>
</member>
<member name="T:Hiro.Interfaces.IImplementation">
<summary>
Represents a service implementation that can be emitted in IL.
</summary>
</member>
<member name="M:Hiro.Interfaces.IImplementation.GetMissingDependencies(Hiro.Interfaces.IDependencyContainer)">
<summary>
Gets the list of missing dependencies from the current implementation.
</summary>
<param name="map">The implementation map.</param>
<returns>A list of missing dependencies.</returns>
</member>
<member name="M:Hiro.Interfaces.IImplementation.GetRequiredDependencies">
<summary>
Returns the dependencies required by the current implementation.
</summary>
<returns>The list of required dependencies required by the current implementation.</returns>
</member>
<member name="M:Hiro.Interfaces.IImplementation.Emit(Hiro.Interfaces.IDependency,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition)">
<summary>
Emits the instructions that will instantiate the current implementation.
</summary>
<param name="dependency">The dependency that describes the service to be instantiated.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="targetMethod">The target method.</param>
</member>
<member name="M:Hiro.Implementations.BaseContainerCall.#ctor(System.Type,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Hiro.Implementations.NextContainerCall"/> class.
</summary>
<param name="serviceType">The service type.</param>
<param name="serviceName">The service name.</param>
</member>
<member name="M:Hiro.Implementations.BaseContainerCall.GetMissingDependencies(Hiro.Interfaces.IDependencyContainer)">
<summary>
Gets the list of missing dependencies from the current implementation.
</summary>
<param name="map">The implementation map.</param>
<returns>A list of missing dependencies.</returns>
</member>
<member name="M:Hiro.Implementations.BaseContainerCall.GetRequiredDependencies">
<summary>
Returns the dependencies required by the current implementation.
</summary>
<returns>The list of required dependencies required by the current implementation.</returns>
</member>
<member name="M:Hiro.Implementations.BaseContainerCall.Emit(Hiro.Interfaces.IDependency,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition)">
<summary>
Emits the instructions that will instantiate the current implementation.
</summary>
<param name="dependency">The dependency that describes the service to be instantiated.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="targetMethod">The target method.</param>
</member>
<member name="M:Hiro.Implementations.BaseContainerCall.EmitGetContainerInstance(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeReference,Mono.Cecil.Cil.CilWorker,Mono.Cecil.Cil.Instruction)">
<summary>
Emits the instructions that will obtain the <see cref="T:Hiro.Containers.IMicroContainer"/> instance.
</summary>
<param name="module">The target module.</param>
<param name="microContainerType">The type reference that points to the <see cref="T:Hiro.Containers.IMicroContainer"/> type.</param>
<param name="worker">The <see cref="T:Mono.Cecil.Cil.CilWorker"/> that points to the <see cref="M:Hiro.Containers.IMicroContainer.GetInstance(System.Type,System.String)"/> method body.</param>
<param name="skipCreate">The skip label that will be used if the service cannot be instantiated.</param>
</member>
<member name="T:Hiro.Implementations.ConstructorCall">
<summary>
Represents an implementation that emits a constructor call.
</summary>
</member>
<member name="T:Hiro.Interfaces.IImplementation`1">
<summary>
Represents a service implementation that can be emitted in IL.
</summary>
<typeparam name="TMember">The member type.</typeparam>
</member>
<member name="T:Hiro.Interfaces.IStaticImplementation">
<summary>
Represents a type that is statically resolved at compile time.
</summary>
</member>
<member name="P:Hiro.Interfaces.IStaticImplementation.TargetType">
<summary>
Gets the value indicating the type that will be instantiated by this implementation.
</summary>
<value>The target type.</value>
</member>
<member name="P:Hiro.Interfaces.IImplementation`1.Target">
<summary>
Gets the value indicating the target member.
</summary>
<value>The target member.</value>
</member>
<member name="M:Hiro.Implementations.ConstructorCall.#ctor(System.Reflection.ConstructorInfo)">
<summary>
Initializes a new instance of the ConstructorCall class.
</summary>
<param name="constructor">The target constructor.</param>
</member>
<member name="M:Hiro.Implementations.ConstructorCall.GetMissingDependencies(Hiro.Interfaces.IDependencyContainer)">
<summary>
Gets the list of missing dependencies from the current implementation.
</summary>
<param name="map">The implementation map.</param>
<returns>A list of missing dependencies.</returns>
</member>
<member name="M:Hiro.Implementations.ConstructorCall.GetRequiredDependencies">
<summary>
Returns the dependencies required by the current implementation.
</summary>
<returns>The list of required dependencies required by the current implementation.</returns>
</member>
<member name="M:Hiro.Implementations.ConstructorCall.Emit(Hiro.Interfaces.IDependency,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition)">
<summary>
Emits the instructions that will instantiate the current implementation.
</summary>
<param name="dependency">The dependency that describes the service to be instantiated.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="targetMethod">The target method.</param>
</member>
<member name="M:Hiro.Implementations.ConstructorCall.EmitDependency(Hiro.Interfaces.IDependency,Mono.Cecil.MethodDefinition,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation})">
<summary>
Emits the necessary IL to instantiate a given service type.
</summary>
<param name="currentDependency">The dependency that will be instantiated.</param>
<param name="targetMethod">The target method that will instantiate the service instance.</param>
<param name="serviceMap">The service map that contains the target dependency to be instantiated.</param>
</member>
<member name="M:Hiro.Implementations.ConstructorCall.Resolve(System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Hiro.Interfaces.IDependency)">
<summary>
Resolves an <see cref="T:Hiro.Interfaces.IImplementation"/> from the given <paramref name="currentDependency">dependency</paramref> and <paramref name="serviceMap"/>.
</summary>
<param name="serviceMap">The service map that contains the target dependency to be instantiated.</param>
<param name="currentDependency">The dependency that will be instantiated.</param>
<returns>The <see cref="T:Hiro.Interfaces.IImplementation"/> instance that will be used to instantiate the dependency.</returns>
</member>
<member name="M:Hiro.Implementations.ConstructorCall.GetDependency(System.Reflection.ParameterInfo)">
<summary>
Determines which dependency should be used for the target parameter.
</summary>
<param name="parameter">The constructor parameter.</param>
<returns>A <see cref="T:Hiro.Interfaces.IDependency"/> instance that represents the dependency that will be used for the target parameter.</returns>
</member>
<member name="P:Hiro.Implementations.ConstructorCall.TargetType">
<summary>
Gets the value indicating the type that will be instantiated by this implementation.
</summary>
<value>The target type.</value>
</member>
<member name="P:Hiro.Implementations.ConstructorCall.Target">
<summary>
Gets the value indicating the target member.
</summary>
<value>The target member.</value>
</member>
<member name="T:Hiro.Implementations.ContainerCall">
<summary>
Represents a class that emits a self container call that instantiates the given service name and service type.
</summary>
</member>
<member name="M:Hiro.Implementations.ContainerCall.#ctor(System.Type,System.String)">
<summary>
Initializes a new instance of the ContainerCall class.
</summary>
<param name="serviceType">The service type that will be instantiated.</param>
<param name="serviceName">The name of the service to instantiaet.</param>
</member>
<member name="M:Hiro.Implementations.ContainerCall.EmitGetContainerInstance(Mono.Cecil.ModuleDefinition,Mono.Cecil.TypeReference,Mono.Cecil.Cil.CilWorker,Mono.Cecil.Cil.Instruction)">
<summary>
Emits the instructions that will obtain the <see cref="!:IMicroContainer"/> instance.
</summary>
<param name="module">The target module.</param>
<param name="microContainerType">The type reference that points to the <see cref="!:IMicroContainer"/> type.</param>
<param name="worker">The <see cref="T:Mono.Cecil.Cil.CilWorker"/> that points to the <see cref="!:IMicroContainer.GetInstance"/> method body.</param>
<param name="skipCreate">The skip label that will be used if the service cannot be instantiated.</param>
</member>
<member name="T:Hiro.Implementations.NextContainerCall">
<summary>
Represents an implementation that will use the next container in the <see cref="T:Hiro.Containers.IMicroContainer"/>
chain to instantiate a particular service name and service type.
</summary>
</member>
<member name="M:Hiro.Implementations.NextContainerCall.#ctor(System.Type,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Hiro.Implementations.NextContainerCall"/> class.
</summary>
<param name="serviceType">The service type.</param>
<param name="serviceName">The service name.</param>
</member>
<member name="T:Hiro.Implementations.PropertyInjectionCall">
<summary>
Represents an <see cref="T:Hiro.Interfaces.IImplementation"/> type that adds property injection capabilities to other <see cref="T:Hiro.Interfaces.IImplementation"/> instances.
</summary>
</member>
<member name="F:Hiro.Implementations.PropertyInjectionCall._implementation">
<summary>
The implementation that will instantiate the target type.
</summary>
</member>
<member name="F:Hiro.Implementations.PropertyInjectionCall._propertyFilter">
<summary>
The functor that determines which properties will be injected.
</summary>
</member>
<member name="F:Hiro.Implementations.PropertyInjectionCall._propertyDependencyResolver">
<summary>
The functor that determines the dependencies that will be injected into each property.
</summary>
</member>
<member name="M:Hiro.Implementations.PropertyInjectionCall.#ctor(Hiro.Interfaces.IStaticImplementation)">
<summary>
Initializes a new instance of the PropertyInjector class.
</summary>
<param name="implementation">The target implementation that will instantiate the service type.</param>
</member>
<member name="M:Hiro.Implementations.PropertyInjectionCall.#ctor(Hiro.Interfaces.IStaticImplementation,System.Func{System.Reflection.PropertyInfo,System.Boolean},System.Func{System.Reflection.PropertyInfo,Hiro.Interfaces.IDependency})">
<summary>
Initializes a new instance of the PropertyInjector class.
</summary>
<param name="implementation">The target implementation that will instantiate the service type.</param>
<param name="propertyFilter">The functor that determines which properties will be injected.</param>
<param name="propertyDependencyResolver">The functor that determines the dependencies that will be injected into each property.</param>
</member>
<member name="M:Hiro.Implementations.PropertyInjectionCall.GetMissingDependencies(Hiro.Interfaces.IDependencyContainer)">
<summary>
Gets the list of missing dependencies from the current implementation.
</summary>
<param name="map">The implementation map.</param>
<returns>A list of missing dependencies.</returns>
</member>
<member name="M:Hiro.Implementations.PropertyInjectionCall.GetRequiredDependencies">
<summary>
Returns the dependencies required by the current implementation.
</summary>
<returns>The list of required dependencies required by the current implementation.</returns>
</member>
<member name="M:Hiro.Implementations.PropertyInjectionCall.Emit(Hiro.Interfaces.IDependency,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition)">
<summary>
Emits the instructions that will instantiate the current implementation.
</summary>
<param name="dependency">The dependency that describes the service to be instantiated.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="targetMethod">The target method.</param>
</member>
<member name="M:Hiro.Implementations.PropertyInjectionCall.EmitPropertySetter(System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition,Mono.Cecil.ModuleDefinition,Mono.Cecil.Cil.CilWorker,System.Reflection.PropertyInfo,Hiro.Interfaces.IDependency)">
<summary>
Emits the instructions that will instantiate each property value and assign it to the target property.
</summary>
<param name="serviceMap">The service map that contains the application dependencies.</param>
<param name="targetMethod">The target method.</param>
<param name="module">The module that hosts the container type.</param>
<param name="worker">The <see cref="T:Mono.Cecil.Cil.CilWorker"/> that points to the target method body.</param>
<param name="property">The target property.</param>
<param name="curentDependency">The <see cref="T:Hiro.Interfaces.IDependency"/> that describes the service instance that will be assigned to the target property.</param>
</member>
<member name="P:Hiro.Implementations.PropertyInjectionCall.TargetType">
<summary>
Gets the value indicating the type that will be instantiated by this implementation.
</summary>
<value>The target type.</value>
</member>
<member name="T:Hiro.Implementations.PropertyInjector">
<summary>
Represents a class that adds property injection calls to an existing <see cref="T:Hiro.Interfaces.IImplementation"/> instance.
</summary>
</member>
<member name="T:Hiro.Interfaces.IImplementationInjector">
<summary>
Represents an interface that allows users to intercept <see cref="T:Hiro.Interfaces.IImplementation"/> instances.
</summary>
</member>
<member name="M:Hiro.Interfaces.IImplementationInjector.Inject(Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation)">
<summary>
Injects the target <paramref name="IImplementation"/> instance.
</summary>
<param name="dependency">The target dependency.</param>
<param name="originalImplementation">The target implementation that will be intercepted by this method.</param>
<returns>The <see cref="T:Hiro.Interfaces.IImplementation"/> instance that will be injected in place of the original implementation.</returns>
</member>
<member name="M:Hiro.Implementations.PropertyInjector.Inject(Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation)">
<summary>
Injects the target <paramref name="IImplementation"/> instance.
</summary>
<param name="dependency">The target dependency.</param>
<param name="originalImplementation">The target implementation that will be intercepted by this method.</param>
<returns>The <see cref="T:Hiro.Interfaces.IImplementation"/> instance that will be injected in place of the original implementation.</returns>
</member>
<member name="T:Hiro.Implementations.SingletonType">
<summary>
Represents a service implementation that will be instantiated as a singleton instance.
</summary>
</member>
<member name="F:Hiro.Implementations.SingletonType._implementation">
<summary>
The implementation that will be instantiated as a singleton.
</summary>
</member>
<member name="F:Hiro.Implementations.SingletonType._emitter">
<summary>
The singleton emitter that will generate the singleton types.
</summary>
</member>
<member name="M:Hiro.Implementations.SingletonType.#ctor(Hiro.Interfaces.IStaticImplementation)">
<summary>
Initializes a new instance of the SingletonType class.
</summary>
<param name="implementation">The implementation that will be used to instantiate a service instance.</param>
</member>
<member name="M:Hiro.Implementations.SingletonType.#ctor(System.Type,Hiro.Interfaces.IDependencyContainer)">
<summary>
Initializes a new instance of the SingletonType class.
</summary>
<param name="targetType">The concrete service type.</param>
<param name="container">The dependency container that contains the dependencies that will be used by the target type.</param>
</member>
<member name="M:Hiro.Implementations.SingletonType.Emit(Hiro.Interfaces.IDependency,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition)">
<summary>
Emits the instructions that will instantiate the current implementation.
</summary>
<param name="dependency">The dependency that describes the service to be instantiated.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="targetMethod">The target method.</param>
</member>
<member name="M:Hiro.Implementations.SingletonType.GetMissingDependencies(Hiro.Interfaces.IDependencyContainer)">
<summary>
Gets the list of missing dependencies from the current implementation.
</summary>
<param name="map">The implementation map.</param>
<returns>A list of missing dependencies.</returns>
</member>
<member name="M:Hiro.Implementations.SingletonType.GetRequiredDependencies">
<summary>
Returns the dependencies that are required by the current implementation.
</summary>
<returns>The list of required dependencies required by the current implementation.</returns>
</member>
<member name="P:Hiro.Implementations.SingletonType.TargetType">
<summary>
Gets the value indicating the type that will be instantiated by this implementation.
</summary>
<value>The target type.</value>
</member>
<member name="T:Hiro.Implementations.TransientType">
<summary>
Represents an implementation that can instantiate a type that has more than one constructor.
</summary>
</member>
<member name="F:Hiro.Implementations.TransientType._targetType">
<summary>
The type that will be instantiated by the compiled container.
</summary>
</member>
<member name="F:Hiro.Implementations.TransientType._container">
<summary>
The dependency container that contains the dependencies in the given application.
</summary>
</member>
<member name="F:Hiro.Implementations.TransientType._getConstructorImplementation">
<summary>
The functor that determines which constructor implementation will be used to instantiate the target type.
</summary>
</member>
<member name="M:Hiro.Implementations.TransientType.#ctor(System.Type,Hiro.Interfaces.IDependencyContainer)">
<summary>
Initializes a new instance of the TransientType class.
</summary>
<param name="targetType">The target type.</param>
<param name="container">The dependency container.</param>
</member>
<member name="M:Hiro.Implementations.TransientType.GetMissingDependencies(Hiro.Interfaces.IDependencyContainer)">
<summary>
Returns the dependencies required by the current implementation.
</summary>
<param name="map">The dependency container.</param>
<returns>The list of required dependencies required by the current implementation.</returns>
</member>
<member name="M:Hiro.Implementations.TransientType.GetRequiredDependencies">
<summary>
Returns the dependencies required by the current implementation.
</summary>
<returns>The list of required dependencies required by the current implementation.</returns>
</member>
<member name="M:Hiro.Implementations.TransientType.Emit(Hiro.Interfaces.IDependency,System.Collections.Generic.IDictionary{Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation},Mono.Cecil.MethodDefinition)">
<summary>
Emits the instructions that will instantiate the current implementation.
</summary>
<param name="dependency">The dependency that describes the service to be instantiated.</param>
<param name="serviceMap">The service map that contains the list of dependencies in the application.</param>
<param name="targetMethod">The target method.</param>
</member>
<member name="P:Hiro.Implementations.TransientType.TargetType">
<summary>
Gets the value indicating the type that will be instantiated by this implementation.
</summary>
<value>The target type.</value>
</member>
<member name="P:Hiro.Implementations.TransientType.Target">
<summary>
Gets the value indicating the constructor that will be used to instantiate the implementation.
</summary>
<value>The target constructor.</value>
</member>
<member name="P:Hiro.Implementations.TransientType.TargetImplementation">
<summary>
Gets the value indicating the constructor implementation that will be used to
instantiate the target type.
</summary>
<value>The target implementation that will instantiate the target type.</value>
</member>
<member name="T:Hiro.Interfaces.IAssemblyLoader">
<summary>
Represents a type that loads assemblies from a given location.
</summary>
</member>
<member name="M:Hiro.Interfaces.IAssemblyLoader.Load(System.String)">
<summary>
Loads an assembly from disk.
</summary>
<param name="filename">The file name of the target assembly.</param>
<returns>The loaded <see cref="T:System.Reflection.Assembly"/>.</returns>
</member>
<member name="T:Hiro.Interfaces.IContainerCompiler">
<summary>
Represents a type that can convert <see cref="T:Hiro.Interfaces.IDependencyContainer"/> objects into a compiled assembly that contains an IOC container.
</summary>
</member>
<member name="M:Hiro.Interfaces.IContainerCompiler.Compile(Hiro.Interfaces.IDependencyContainer)">
<summary>
Compiles a dependency graph into an IOC container.
</summary>
<param name="dependencyContainer">The <see cref="T:Hiro.Interfaces.IDependencyContainer"/> instance that contains the services that will be instantiated by compiled container.</param>
<returns>An assembly containing the compiled IOC container.</returns>
</member>
<member name="T:Hiro.Interfaces.IDefaultServiceResolver">
<summary>
Represents a type that determines the default service when multiple implementations of the same type already exist in the dependency map.
</summary>
</member>
<member name="M:Hiro.Interfaces.IDefaultServiceResolver.GetDefaultService(System.Type,System.Collections.Generic.IEnumerable{Hiro.Interfaces.IServiceInfo})">
<summary>
Determines which service should be used as the default service for the given service type.
</summary>
<param name="serviceType">The service type.</param>
<param name="services">The list of services that implement the service type.</param>
<returns>The <see cref="T:Hiro.Interfaces.IServiceInfo"/> instance that will determine </returns>
</member>
<member name="T:Hiro.Interfaces.IDependency">
<summary>
Represents a service dependency.
</summary>
</member>
<member name="P:Hiro.Interfaces.IDependency.ServiceName">
<summary>
Gets the value indicating the name of the service itself.
</summary>
<value>The service name.</value>
</member>
<member name="P:Hiro.Interfaces.IDependency.ServiceType">
<summary>
Gets a value indicating the service type.
</summary>
<value>The service type.</value>
</member>
<member name="T:Hiro.Interfaces.IDependencyContainer">
<summary>
Represents a type that maps a service dependency to its corresponding type implementation.
</summary>
</member>
<member name="M:Hiro.Interfaces.IDependencyContainer.Contains(Hiro.Interfaces.IDependency)">
<summary>
Determines whether or not a particular service dependency exists in the current dependency container.
</summary>
<param name="dependency">The target service dependency.</param>
<returns><c>true</c> if the service exists; otherwise, it will return <c>false</c>.</returns>
</member>
<member name="M:Hiro.Interfaces.IDependencyContainer.GetImplementations(Hiro.Interfaces.IDependency,System.Boolean)">
<summary>
Gets the current list of implementations for the current dependency.
</summary>
<param name="targetDependency">The target dependency.</param>
<param name="addIncompleteImplementations">A boolean flag that determines whether or not the resulting list should include implementations with incomplete dependencies.</param>
<returns>A list of implementations.</returns>
</member>
<member name="P:Hiro.Interfaces.IDependencyContainer.Dependencies">
<summary>
Gets the value indicating the list of dependencies that currently exist within the current container.
</summary>
<value>The current list of dependencies.</value>
</member>
<member name="T:Hiro.Interfaces.IDependencyMap">
<summary>
Represents a type that can map <see cref="T:Hiro.Interfaces.IDependency"/> instances to their respective <see cref="T:Hiro.Interfaces.IImplementation"/> instances.
</summary>
</member>
<member name="M:Hiro.Interfaces.IDependencyMap.AddService(Hiro.Interfaces.IDependency,Hiro.Interfaces.IImplementation)">
<summary>
Associates the given <paramref name="implementation"/> with the target <paramref name="dependency"/>.
</summary>
<param name="dependency">The dependency that will be associated with the implementation.</param>
<param name="implementation">The implementation itself.</param>
</member>
<member name="T:Hiro.Interfaces.IServiceInfo">
<summary>
Describes a service that can be created by the container.
</summary>
</member>
<member name="P:Hiro.Interfaces.IServiceInfo.ImplementingType">
<summary>
Gets the value indicating the type that will implement the service type.
</summary>
<value>The implementing type.</value>
</member>
<member name="T:Hiro.Interfaces.IServiceLoader">
<summary>
Represents a type that can load services from a given assembly.
</summary>
</member>
<member name="M:Hiro.Interfaces.IServiceLoader.Load(System.Reflection.Assembly)">
<summary>
Loads services from the given assembly.
</summary>
<param name="targetAssembly">The assembly that contains the types to be loaded.</param>
<returns>The list of services.</returns>
</member>
<member name="T:Hiro.Interfaces.IServicePicker">
<summary>
Represents a type that determines the default service implementation from a given list of services.
</summary>
</member>
<member name="M:Hiro.Interfaces.IServicePicker.ChooseDefaultServiceFrom(System.Type,System.Collections.Generic.IEnumerable{Hiro.Interfaces.IServiceInfo})">
<summary>
Determines which <see cref="T:Hiro.Interfaces.IServiceInfo"/> instance should be used as the default service.
</summary>
<param name="serviceType">The service type.</param>
<param name="services">The list of services.</param>
<returns>The default service implementation.</returns>
</member>
<member name="T:Hiro.Interfaces.ITypeFilter">
<summary>
Represents a type that can filter a list of types.
</summary>
</member>
<member name="M:Hiro.Interfaces.ITypeFilter.GetTypes(System.Collections.Generic.IEnumerable{System.Type},System.Predicate{System.Type})">
<summary>
Filters a list of given types.
</summary>
<param name="items">The list of types to be filtered.</param>
<param name="filter">The predicate that determines which types should be selected.</param>
<returns>A list of types.</returns>