/// <summary>
 /// </summary>
 /// <param name="reader"> </param>
 /// <returns> </returns>
 private void HandleDocumentationElement(XmlReader reader)
 {
     Documentation = new DocumentationElement(this);
     Documentation.Parse(reader);
 }
예제 #2
0
 private void HandleDocumentationElement(XmlReader reader)
 {
     Documentation = new DocumentationElement(this);
     Documentation.Parse(reader);
 }
예제 #3
0
 /// <summary>
 ///     Converts an SOM Documentation node to a metadata Documentation construct
 /// </summary>
 /// <param name="element"> The SOM element to process </param>
 /// <param name="providerManifest"> The provider manifest to be used for conversion </param>
 /// <param name="convertedItemCache"> The item collection for currently existing metadata objects </param>
 /// <param name="newGlobalItems"> The new GlobalItem objects that are created as a result of this conversion </param>
 /// <returns> The Documentation object resulting from the convert operation </returns>
 private static Documentation ConvertToDocumentation(DocumentationElement element)
 {
     DebugCheck.NotNull(element);
     return element.MetadataDocumentation;
 }