SyntaxFactory.XmlSeeAlsoElement Method

Definition

Overloads

XmlSeeAlsoElement(CrefReferenceSyntax)

Creates a seealso element within an xml documentation comment.

XmlSeeAlsoElement(Uri, SyntaxList<XmlNodeSyntax>)

Creates a seealso element within an xml documentation comment.

XmlSeeAlsoElement(CrefReferenceSyntax)

Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb

Creates a seealso element within an xml documentation comment.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::XmlEmptyElementSyntax ^ XmlSeeAlsoElement(Microsoft::CodeAnalysis::VisualBasic::Syntax::CrefReferenceSyntax ^ cref);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.XmlEmptyElementSyntax XmlSeeAlsoElement (Microsoft.CodeAnalysis.VisualBasic.Syntax.CrefReferenceSyntax cref);
static member XmlSeeAlsoElement : Microsoft.CodeAnalysis.VisualBasic.Syntax.CrefReferenceSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.XmlEmptyElementSyntax
Public Shared Function XmlSeeAlsoElement (cref As CrefReferenceSyntax) As XmlEmptyElementSyntax

Parameters

cref
CrefReferenceSyntax

A cref syntax node that points to the referenced item (e.g. a class, struct).

Returns

Applies to

XmlSeeAlsoElement(Uri, SyntaxList<XmlNodeSyntax>)

Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb
Source:
SyntaxFactory.vb

Creates a seealso element within an xml documentation comment.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::XmlElementSyntax ^ XmlSeeAlsoElement(Uri ^ linkAddress, Microsoft::CodeAnalysis::SyntaxList<Microsoft::CodeAnalysis::VisualBasic::Syntax::XmlNodeSyntax ^> linkText);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.XmlElementSyntax XmlSeeAlsoElement (Uri linkAddress, Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.XmlNodeSyntax> linkText);
static member XmlSeeAlsoElement : Uri * Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.XmlNodeSyntax> -> Microsoft.CodeAnalysis.VisualBasic.Syntax.XmlElementSyntax
Public Shared Function XmlSeeAlsoElement (linkAddress As Uri, linkText As SyntaxList(Of XmlNodeSyntax)) As XmlElementSyntax

Parameters

linkAddress
Uri

The uri of the referenced item.

linkText
SyntaxList<XmlNodeSyntax>

A list of xml node syntax that will be used as the link text for the referenced item.

Returns

Applies to