コード例 #1
0
 internal void SetAdditionalData(MamlCommandHelpInfo helpInfo) => helpInfo.SetAdditionalDataFromHelpComment(this.sections.component, this.sections.functionality, this.sections.role);
コード例 #2
0
 /// <summary>
 /// The analysis of the comments finds the component, functionality, and role fields, but
 /// those fields aren't added to the xml because they aren't children of the command xml
 /// node, they are under a sibling of the command xml node and apply to all command nodes
 /// in a maml file.
 /// </summary>
 /// <param name="helpInfo">The helpInfo object to set the fields on.</param>
 internal void SetAdditionalData(MamlCommandHelpInfo helpInfo)
 {
     helpInfo.SetAdditionalDataFromHelpComment(
         _sections.Component,
         _sections.Functionality,
         _sections.Role);
 }
コード例 #3
0
 internal void SetAdditionalData(MamlCommandHelpInfo helpInfo)
 {
     helpInfo.SetAdditionalDataFromHelpComment(this._sections.Component, this._sections.Functionality, this._sections.Role);
 }