Responsible for mapping a reflection and a xml documentation model.
Пример #1
0
        /// <summary>
        /// Generates a document model.
        /// </summary>
        /// <param name="paths">The items.</param>
        /// <returns>The built document model.</returns>
        public DocumentModel BuildModel(IDictionary <string, IDocumentationMetadata> paths)
        {
            var reflectionModel = BuildReflectionModel(paths);
            var xmlModel        = BuildXmlModel(paths);

            return(DocumentModelMapper.Map(reflectionModel, xmlModel));
        }