SyntaxFactory.FalseLiteralExpression(SyntaxToken) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Representa um literal. O tipo de literal é determinado pela propriedade Kind: IntegerLiteral, CharacterLiteral, BooleanLiteral, DecimalLiteral, FloatingLiteral, DateLiteral ou StringLiteral. O valor do literal pode ser determinado convertendo o Token associado para o tipo correto e obtendo o valor do token.
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
Parâmetros
- token
- SyntaxToken
O token que representa o literal. A propriedade Kind determina que tipo essa propriedade retorna: Kind=IntegerLiteral ==> Retorna IntegerLiteralToken. Kind=CharacterLiteral ==> Retorna CharacterLiteralToken. Kind=DecimalLiteral ==> Returns DecimalLiteralToken Kind=FloatingLiteral ==> Returns FloatingLiteralToken Kind=DateLiteral ==> Returns DateLiteralToken Kind=StringLiteral ==> Returns StringLiteralToken Kind=BooleanLiteral ==> Returns Keyword (with it's kind being TrueKeyword or FalseKeyword) Kind=NothingLiteral ==> Returns Keyword (with it's kind being NothingKeyword)