当前位置: 首页>>代码示例>>C#>>正文


C# IDeclaration.ToTreeNode方法代码示例

本文整理汇总了C#中IDeclaration.ToTreeNode方法的典型用法代码示例。如果您正苦于以下问题:C# IDeclaration.ToTreeNode方法的具体用法?C# IDeclaration.ToTreeNode怎么用?C# IDeclaration.ToTreeNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IDeclaration的用法示例。


在下文中一共展示了IDeclaration.ToTreeNode方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetXmlNodeForDeclaration

        /// <summary>
        /// Returns the xml for the given declaration or null.
        /// </summary>
        /// <param name="declaration">
        /// The declaration to get the docs for.
        /// </param>
        /// <returns>
        /// An XmlNode of the docs.
        /// </returns>
        private static XmlNode GetXmlNodeForDeclaration(IDeclaration declaration)
        {
            ITreeNode declarationTreeNode = declaration.ToTreeNode();

            ITreeNode treeNode = declarationTreeNode is IMultipleDeclarationMemberNode ? declarationTreeNode.Parent.FirstChild : declarationTreeNode.FirstChild;

            XmlNode node;
            StringBuilder text = new StringBuilder();

            text.AppendLine("<member>");

            for (ITreeNode child = treeNode.FirstChild; child != null; child = child.NextSibling)
            {
                if (child.IsNewLine())
                {
                    text.AppendLine(string.Empty);
                    continue;
                }

                IDocCommentNode docCommentNode = child as IDocCommentNode;
                if (docCommentNode != null)
                {
                    text.Append(docCommentNode.CommentText);
                }
            }

            text.AppendLine("</member>");
            try
            {
                XmlDocument xmlDoc = new XmlDocument { PreserveWhitespace = true };
                xmlDoc.LoadXml(text.ToString());
                node = xmlDoc.SelectSingleNode("member");
            }
            catch (XmlException)
            {
                return null;
            }

            return node;
        }
开发者ID:transformersprimeabcxyz,项目名称:_TO-FIRST-stylecop,代码行数:49,代码来源:DeclarationHeader.cs

示例2: GetDocCommentBlockOwnerNodeForDeclaration

 /// <summary>
 /// Gets the DocCommentBlockOwnerNode for the declaration provided.
 /// </summary>
 /// <param name="declaration">
 /// The declaration to check for docs.
 /// </param>
 /// <returns>
 /// Null if the declaration has no docs.
 /// </returns>
 public static IDocCommentBlockOwnerNode GetDocCommentBlockOwnerNodeForDeclaration(IDeclaration declaration)
 {
     ITreeNode treeNode = declaration.ToTreeNode();
     return treeNode is IMultipleDeclarationMemberNode ? (IDocCommentBlockOwnerNode)treeNode.Parent : declaration as IDocCommentBlockOwnerNode;
 }
开发者ID:transformersprimeabcxyz,项目名称:_TO-FIRST-stylecop,代码行数:14,代码来源:Utils.cs

示例3: CreateNewHeader

        /// <summary>
        /// Creates a new DeclarationHeader for the declaration and assigns it to the declaration.
        /// </summary>
        /// <param name="declaration">
        /// The declaration to create the header for.
        /// </param>
        /// <param name="docConfig">
        /// Provides the configuration for the current ProjectFile.
        /// </param>
        /// <returns>
        /// A DeclarationHeader for the declaration passed in.
        /// </returns>
        public static DeclarationHeader CreateNewHeader(IDeclaration declaration, DocumentationRulesConfiguration docConfig)
        {
            IFile file = declaration.GetContainingFile();
            using (WriteLockCookie.Create(file.IsPhysical()))
            {
                ITreeNode declarationTreeNode = declaration.ToTreeNode();

                string middleText = StyleCopOptions.Instance.UseSingleLineDeclarationComments ? string.Empty : Environment.NewLine;

                string emptyDocHeader = string.Format("<summary>{0}</summary>", middleText);

                if (!(declarationTreeNode is IMultipleDeclarationMemberNode))
                {
                    emptyDocHeader = CreateDocumentationForElement((IDocCommentBlockOwnerNode)declaration, docConfig);
                    emptyDocHeader = emptyDocHeader.Substring(0, emptyDocHeader.Length - Environment.NewLine.Length);
                }

                string header = LayoutDocumentationHeader(emptyDocHeader);

                IDocCommentBlockNode newDocCommentNode = Utils.CreateDocCommentBlockNode(file, header);

                IDocCommentBlockOwnerNode docCommentBlockOwnerNode = Utils.GetDocCommentBlockOwnerNodeForDeclaration(declaration);

                if (docCommentBlockOwnerNode != null)
                {
                    docCommentBlockOwnerNode.SetDocCommentBlockNode(newDocCommentNode);
                }

                return new DeclarationHeader(declaration);
            }
        }
开发者ID:transformersprimeabcxyz,项目名称:_TO-FIRST-stylecop,代码行数:43,代码来源:DeclarationHeader.cs

示例4: GetDocCommentBlockNodeForDeclaration

 /// <summary>
 /// Returns the DocCommentBlockNode for the declaration provided.
 /// </summary>
 /// <param name="declaration">
 /// The declaration to check for docs.
 /// </param>
 /// <returns>
 /// Null if the declaration has no docs.
 /// </returns>
 public static IDocCommentBlockNode GetDocCommentBlockNodeForDeclaration(IDeclaration declaration)
 {
     ITreeNode treeNode = declaration.ToTreeNode();
     return (treeNode is IMultipleDeclarationMemberNode)
                ? SharedImplUtil.GetDocCommentBlockNode(((IMultipleDeclarationMemberNode)treeNode).MultipleDeclaration)
                : SharedImplUtil.GetDocCommentBlockNode(treeNode);
 }
开发者ID:transformersprimeabcxyz,项目名称:_TO-FIRST-stylecop,代码行数:16,代码来源:Utils.cs


注:本文中的IDeclaration.ToTreeNode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。