本文整理汇总了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;
}
示例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;
}
示例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);
}
}
示例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);
}