SyntaxFactory.XmlTextNewLine Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
XmlTextNewLine(String) |
Creates the syntax representation of an xml newline token with a documentation comment exterior trivia at the end (continued documentation comment). |
XmlTextNewLine(String, Boolean) |
Creates the syntax representation of an xml newline token for xml documentation comments. |
XmlTextNewLine(String, String, SyntaxTriviaList, SyntaxTriviaList) |
Creates a token with kind XmlTextLiteralNewLineToken. |
XmlTextNewLine(String)
- 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 the syntax representation of an xml newline token with a documentation comment exterior trivia at the end (continued documentation comment).
public:
static Microsoft::CodeAnalysis::SyntaxToken XmlTextNewLine(System::String ^ text);
public static Microsoft.CodeAnalysis.SyntaxToken XmlTextNewLine (string text);
static member XmlTextNewLine : string -> Microsoft.CodeAnalysis.SyntaxToken
Public Shared Function XmlTextNewLine (text As String) As SyntaxToken
Parameters
- text
- String
The raw text within the new line.
Returns
Applies to
XmlTextNewLine(String, Boolean)
- 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 the syntax representation of an xml newline token for xml documentation comments.
public:
static Microsoft::CodeAnalysis::SyntaxToken XmlTextNewLine(System::String ^ text, bool continueXmlDocumentationComment);
public static Microsoft.CodeAnalysis.SyntaxToken XmlTextNewLine (string text, bool continueXmlDocumentationComment);
static member XmlTextNewLine : string * bool -> Microsoft.CodeAnalysis.SyntaxToken
Public Shared Function XmlTextNewLine (text As String, continueXmlDocumentationComment As Boolean) As SyntaxToken
Parameters
- text
- String
The raw text within the new line.
- continueXmlDocumentationComment
- Boolean
If set to true, a documentation comment exterior token will be added to the trailing trivia of the new token.
Returns
Applies to
XmlTextNewLine(String, String, SyntaxTriviaList, SyntaxTriviaList)
- 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 token with kind XmlTextLiteralNewLineToken.
public:
static Microsoft::CodeAnalysis::SyntaxToken XmlTextNewLine(System::String ^ text, System::String ^ value, Microsoft::CodeAnalysis::SyntaxTriviaList leading, Microsoft::CodeAnalysis::SyntaxTriviaList trailing);
public static Microsoft.CodeAnalysis.SyntaxToken XmlTextNewLine (string text, string value, Microsoft.CodeAnalysis.SyntaxTriviaList leading, Microsoft.CodeAnalysis.SyntaxTriviaList trailing);
static member XmlTextNewLine : string * string * Microsoft.CodeAnalysis.SyntaxTriviaList * Microsoft.CodeAnalysis.SyntaxTriviaList -> Microsoft.CodeAnalysis.SyntaxToken
Public Shared Function XmlTextNewLine (text As String, value As String, leading As SyntaxTriviaList, trailing As SyntaxTriviaList) As SyntaxToken
Parameters
- text
- String
The raw text of the literal.
- value
- String
The xml text new line value.
- leading
- SyntaxTriviaList
A list of trivia immediately preceding the token.
- trailing
- SyntaxTriviaList
A list of trivia immediately following the token.