SyntaxFactory.PropertyBlock Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PropertyBlock(PropertyStatementSyntax, SyntaxList<AccessorBlockSyntax>, EndBlockStatementSyntax) |
Represents a block property declaration: A declaration that has a beginning declaration, some get or set accessor blocks and an end statement. |
PropertyBlock(PropertyStatementSyntax, SyntaxList<AccessorBlockSyntax>) |
Represents a block property declaration: A declaration that has a beginning declaration, some get or set accessor blocks and an end statement. |
PropertyBlock(PropertyStatementSyntax, SyntaxList<AccessorBlockSyntax>, EndBlockStatementSyntax)
- 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 block property declaration: A declaration that has a beginning declaration, some get or set accessor blocks and an end statement.
public:
static Microsoft::CodeAnalysis::VisualBasic::Syntax::PropertyBlockSyntax ^ PropertyBlock(Microsoft::CodeAnalysis::VisualBasic::Syntax::PropertyStatementSyntax ^ propertyStatement, Microsoft::CodeAnalysis::SyntaxList<Microsoft::CodeAnalysis::VisualBasic::Syntax::AccessorBlockSyntax ^> accessors, Microsoft::CodeAnalysis::VisualBasic::Syntax::EndBlockStatementSyntax ^ endPropertyStatement);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyBlockSyntax PropertyBlock (Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyStatementSyntax propertyStatement, Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AccessorBlockSyntax> accessors, Microsoft.CodeAnalysis.VisualBasic.Syntax.EndBlockStatementSyntax endPropertyStatement);
static member PropertyBlock : Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyStatementSyntax * Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AccessorBlockSyntax> * Microsoft.CodeAnalysis.VisualBasic.Syntax.EndBlockStatementSyntax -> Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyBlockSyntax
Public Shared Function PropertyBlock (propertyStatement As PropertyStatementSyntax, accessors As SyntaxList(Of AccessorBlockSyntax), endPropertyStatement As EndBlockStatementSyntax) As PropertyBlockSyntax
Parameters
- propertyStatement
- PropertyStatementSyntax
The property declaration that begins the block.
- accessors
- SyntaxList<AccessorBlockSyntax>
The accessor blocks contained in the property, between the Property and the End Property statements.
- endPropertyStatement
- EndBlockStatementSyntax
The End Property statement that ends the block.
Returns
Applies to
PropertyBlock(PropertyStatementSyntax, SyntaxList<AccessorBlockSyntax>)
- 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 block property declaration: A declaration that has a beginning declaration, some get or set accessor blocks and an end statement.
public:
static Microsoft::CodeAnalysis::VisualBasic::Syntax::PropertyBlockSyntax ^ PropertyBlock(Microsoft::CodeAnalysis::VisualBasic::Syntax::PropertyStatementSyntax ^ propertyStatement, Microsoft::CodeAnalysis::SyntaxList<Microsoft::CodeAnalysis::VisualBasic::Syntax::AccessorBlockSyntax ^> accessors);
public static Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyBlockSyntax PropertyBlock (Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyStatementSyntax propertyStatement, Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AccessorBlockSyntax> accessors);
static member PropertyBlock : Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyStatementSyntax * Microsoft.CodeAnalysis.SyntaxList<Microsoft.CodeAnalysis.VisualBasic.Syntax.AccessorBlockSyntax> -> Microsoft.CodeAnalysis.VisualBasic.Syntax.PropertyBlockSyntax
Public Shared Function PropertyBlock (propertyStatement As PropertyStatementSyntax, accessors As SyntaxList(Of AccessorBlockSyntax)) As PropertyBlockSyntax
Parameters
- propertyStatement
- PropertyStatementSyntax
The property declaration that begins the block.
- accessors
- SyntaxList<AccessorBlockSyntax>
The accessor blocks contained in the property, between the Property and the End Property statements.
Returns
Applies to
.NET