Partager via


SyntaxFactory.DateLiteralExpression(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 faisant passer le jeton associé au type correct et en obtenant la valeur du jeton.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::LiteralExpressionSyntax ^ DateLiteralExpression(Microsoft::CodeAnalysis::SyntaxToken token);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax DateLiteralExpression (Microsoft.CodeAnalysis.SyntaxToken token);
static member DateLiteralExpression : Microsoft.CodeAnalysis.SyntaxToken -> Microsoft.CodeAnalysis.VisualBasic.Syntax.LiteralExpressionSyntax
Public Shared Function DateLiteralExpression (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 ==> Renvoie le mot clé (avec le type TrueKeyword ou FalseKeyword) Kind=NothingLiteral ==> Renvoie le mot clé (avec le type NothingKeyword)

Retours

S’applique à