Freigeben über


SyntaxFactory.SimpleAsClause Methode

Definition

Überlädt

SimpleAsClause(TypeSyntax)

Stellt eine "As {type-name}"-Klausel dar, die keinen Initialisierer oder "Neu" aufweist. Der Typ verfügt über optionale Attribute, die diesem zugeordnet sind, obwohl Attribute an allen möglichen Stellen, an denen dieser Knoten auftritt, nicht zulässig sind.

SimpleAsClause(SyntaxList<AttributeListSyntax>, TypeSyntax)

Stellt eine "As {type-name}"-Klausel dar, die keinen Initialisierer oder "Neu" aufweist. Der Typ verfügt über optionale Attribute, die diesem zugeordnet sind, obwohl Attribute an allen möglichen Stellen, an denen dieser Knoten auftritt, nicht zulässig sind.

SimpleAsClause(SyntaxToken, SyntaxList<AttributeListSyntax>, TypeSyntax)

Stellt eine "As {type-name}"-Klausel dar, die keinen Initialisierer oder "Neu" aufweist. Der Typ verfügt über optionale Attribute, die diesem zugeordnet sind, obwohl Attribute an allen möglichen Stellen, an denen dieser Knoten auftritt, nicht zulässig sind.

SimpleAsClause(TypeSyntax)

Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb

Stellt eine "As {type-name}"-Klausel dar, die keinen Initialisierer oder "Neu" aufweist. Der Typ verfügt über optionale Attribute, die diesem zugeordnet sind, obwohl Attribute an allen möglichen Stellen, an denen dieser Knoten auftritt, nicht zulässig sind.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::SimpleAsClauseSyntax ^ SimpleAsClause(Microsoft::CodeAnalysis::VisualBasic::Syntax::TypeSyntax ^ type);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.SimpleAsClauseSyntax SimpleAsClause (Microsoft.CodeAnalysis.VisualBasic.Syntax.TypeSyntax type);
static member SimpleAsClause : Microsoft.CodeAnalysis.VisualBasic.Syntax.TypeSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.SimpleAsClauseSyntax
Public Shared Function SimpleAsClause (type As TypeSyntax) As SimpleAsClauseSyntax

Parameter

type
TypeSyntax

Der Typnameteil der As-Klausel.

Gibt zurück

Gilt für:

SimpleAsClause(SyntaxList<AttributeListSyntax>, TypeSyntax)

Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb

Stellt eine "As {type-name}"-Klausel dar, die keinen Initialisierer oder "Neu" aufweist. Der Typ verfügt über optionale Attribute, die diesem zugeordnet sind, obwohl Attribute an allen möglichen Stellen, an denen dieser Knoten auftritt, nicht zulässig sind.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::SimpleAsClauseSyntax ^ SimpleAsClause(Microsoft::CodeAnalysis::SyntaxList<Microsoft::CodeAnalysis::VisualBasic::Syntax::AttributeListSyntax ^> attributeLists, Microsoft::CodeAnalysis::VisualBasic::Syntax::TypeSyntax ^ type);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.SimpleAsClauseSyntax SimpleAsClause (Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AttributeListSyntax> attributeLists, Microsoft.CodeAnalysis.VisualBasic.Syntax.TypeSyntax type);
static member SimpleAsClause : Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AttributeListSyntax> * Microsoft.CodeAnalysis.VisualBasic.Syntax.TypeSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.SimpleAsClauseSyntax
Public Shared Function SimpleAsClause (attributeLists As SyntaxList(Of AttributeListSyntax), type As TypeSyntax) As SimpleAsClauseSyntax

Parameter

attributeLists
SyntaxList<AttributeListSyntax>

Eine Liste aller Attributlisten für den Typ. Wenn keine Attribute angegeben wurden, wird eine leere Liste zurückgegeben.

type
TypeSyntax

Der Typnameteil der As-Klausel.

Gibt zurück

Gilt für:

SimpleAsClause(SyntaxToken, SyntaxList<AttributeListSyntax>, TypeSyntax)

Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb
Quelle:
Syntax.xml.Main.Generated.vb

Stellt eine "As {type-name}"-Klausel dar, die keinen Initialisierer oder "Neu" aufweist. Der Typ verfügt über optionale Attribute, die diesem zugeordnet sind, obwohl Attribute an allen möglichen Stellen, an denen dieser Knoten auftritt, nicht zulässig sind.

public:
 static Microsoft::CodeAnalysis::VisualBasic::Syntax::SimpleAsClauseSyntax ^ SimpleAsClause(Microsoft::CodeAnalysis::SyntaxToken asKeyword, Microsoft::CodeAnalysis::SyntaxList<Microsoft::CodeAnalysis::VisualBasic::Syntax::AttributeListSyntax ^> attributeLists, Microsoft::CodeAnalysis::VisualBasic::Syntax::TypeSyntax ^ type);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.SimpleAsClauseSyntax SimpleAsClause (Microsoft.CodeAnalysis.SyntaxToken asKeyword, Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AttributeListSyntax> attributeLists, Microsoft.CodeAnalysis.VisualBasic.Syntax.TypeSyntax type);
static member SimpleAsClause : Microsoft.CodeAnalysis.SyntaxToken * Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AttributeListSyntax> * Microsoft.CodeAnalysis.VisualBasic.Syntax.TypeSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.SimpleAsClauseSyntax
Public Shared Function SimpleAsClause (asKeyword As SyntaxToken, attributeLists As SyntaxList(Of AttributeListSyntax), type As TypeSyntax) As SimpleAsClauseSyntax

Parameter

asKeyword
SyntaxToken

Das Schlüsselwort "As".

attributeLists
SyntaxList<AttributeListSyntax>

Eine Liste aller Attributlisten für den Typ. Wenn keine Attribute angegeben wurden, wird eine leere Liste zurückgegeben.

type
TypeSyntax

Der Typnameteil der As-Klausel.

Gibt zurück

Gilt für: