Partager via


SyntaxFactory.FalseLiteralExpression(SyntaxToken) Méthode

Définition

Représente un littéral. Le type de littéral est déterminé par la propriété Kind : IntegerLiteral, CharacterLiteral, BooleanLiteral, DecimalLiteral, FloatingLiteral, DateLiteral ou StringLiteral. La valeur du littéral peut être déterminée en cas de conversion du jeton associé vers le type correct et en obtenant la valeur du jeton.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::LiteralExpressionSyntax ^ FalseLiteralExpression(Microsoft::CodeAnalysis::SyntaxToken token);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax FalseLiteralExpression (Microsoft.CodeAnalysis.SyntaxToken token);
static member FalseLiteralExpression : Microsoft.CodeAnalysis.SyntaxToken -> Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax
Public Shared Function FalseLiteralExpression (token As SyntaxToken) As LiteralExpressionSyntax

Paramètres

token
SyntaxToken

Jeton qui représente le littéral. La propriété Kind détermine le type retourné par cette propriété : Kind=IntegerLiteral ==> Renvoie IntegerLiteralToken. Kind=CharacterLiteral ==> Renvoie CharacterLiteralToken. Kind=DecimalLiteral ==> Renvoie DecimalLiteralToken Kind=FloatingLiteral ==> Renvoie FloatingLiteralToken Kind=DateLiteral ==> Renvoie DateLiteralToken Kind=StringLiteral ==> Renvoie StringLiteralToken Kind=BooleanLiteral ==> Returns Keyword (avec le type TrueKeyword ou FalseKeyword) Kind=NothingLiteral ==> Returns Keyword (avec le type NothingKeyword)

Retours

S’applique à