SyntaxFactory.InterpolationFormatClause Method

Definition

Overloads

InterpolationFormatClause()

Represents a format string clause ':formatString' of an interpolated string embedded expression.

InterpolationFormatClause(SyntaxToken, SyntaxToken)

Represents a format string clause ':formatString' of an interpolated string embedded expression.

InterpolationFormatClause()

Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb

Represents a format string clause ':formatString' of an interpolated string embedded expression.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::InterpolationFormatClauseSyntax ^ InterpolationFormatClause();
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.InterpolationFormatClauseSyntax InterpolationFormatClause ();
static member InterpolationFormatClause : unit -> Microsoft.CodeAnalysis.VisualBasic.Syntax.InterpolationFormatClauseSyntax
Public Shared Function InterpolationFormatClause () As InterpolationFormatClauseSyntax

Returns

Applies to

InterpolationFormatClause(SyntaxToken, SyntaxToken)

Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb
Source:
Syntax.xml.Main.Generated.vb

Represents a format string clause ':formatString' of an interpolated string embedded expression.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::InterpolationFormatClauseSyntax ^ InterpolationFormatClause(Microsoft::CodeAnalysis::SyntaxToken colonToken, Microsoft::CodeAnalysis::SyntaxToken formatStringToken);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.InterpolationFormatClauseSyntax InterpolationFormatClause (Microsoft.CodeAnalysis.SyntaxToken colonToken, Microsoft.CodeAnalysis.SyntaxToken formatStringToken);
static member InterpolationFormatClause : Microsoft.CodeAnalysis.SyntaxToken * Microsoft.CodeAnalysis.SyntaxToken -> Microsoft.CodeAnalysis.VisualBasic.Syntax.InterpolationFormatClauseSyntax
Public Shared Function InterpolationFormatClause (colonToken As SyntaxToken, formatStringToken As SyntaxToken) As InterpolationFormatClauseSyntax

Parameters

colonToken
SyntaxToken

The ':' token.

formatStringToken
SyntaxToken

The format string.

Returns

Applies to