This commit is contained in:
Build Job 2019-11-08 20:03:38 +00:00
Родитель b00ecaa89f
Коммит ac74e28102
2 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -1566,7 +1566,7 @@
"output": {
".html": {
"relative_path": "tutorials/Composition/composition.html",
"hash": "8fkNyEERYNdEb9D8nSyFHw=="
"hash": "BQKzhS7UhDr+Y5na6nxg6A=="
}
},
"is_incremental": false,
@ -2068,6 +2068,12 @@
"total_file_count": 0,
"skipped_file_count": 0
},
"ConceptualDocumentProcessor": {
"can_incremental": false,
"incrementalPhase": "build",
"total_file_count": 82,
"skipped_file_count": 0
},
"TocDocumentProcessor": {
"can_incremental": false,
"details": "Processor TocDocumentProcessor cannot support incremental build because the processor doesn't implement ISupportIncrementalDocumentProcessor interface.",
@ -2075,12 +2081,6 @@
"total_file_count": 0,
"skipped_file_count": 0
},
"ConceptualDocumentProcessor": {
"can_incremental": false,
"incrementalPhase": "build",
"total_file_count": 82,
"skipped_file_count": 0
},
"ManagedReferenceDocumentProcessor": {
"can_incremental": false,
"incrementalPhase": "build",

Просмотреть файл

@ -73,7 +73,7 @@
<p>Since each dependency might have its own dependencies entire dependency graph has to be created and each node has to be initialized in order of priority.</p>
<p>The Unity container supports two types of composition:</p>
<h2 id="resolution">Resolution</h2>
<p>Resolution is a process where an object is built from scratch. In other words, the container is allocating the memory for an abject, calls a constructor with all of its dependencies and performs all necessary initialization required by the type. For more information see <a class="xref" href="Resolution/resolution.html">Object Resolution</a></p>
<p>Resolution is a process where an object is built from scratch. In other words, the container is allocating the memory for an object, calls a constructor with all of its dependencies and performs all necessary initialization required by the type. For more information see <a class="xref" href="Resolution/resolution.html">Object Resolution</a></p>
<h2 id="building-up">Building Up</h2>
<p>Building up is a process where the container does not create an object but initializes already created object. This is useful when an object is part of an infrastructure and author does not have access or control of how these are created.</p>
</article>