IPropertyInitializerOperation Interface
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.
Represents an initialization of a property.
Current usage: (1) C# property initializer with equals value clause. (2) VB property initializer with equals value clause or AsNew clause. Multiple properties can be initialized with 'WithEvents' declaration with AsNew clause in VB.
public interface class IPropertyInitializerOperation : Microsoft::CodeAnalysis::Operations::ISymbolInitializerOperation
public interface IPropertyInitializerOperation : Microsoft.CodeAnalysis.Operations.ISymbolInitializerOperation
type IPropertyInitializerOperation = interface
interface ISymbolInitializerOperation
interface IOperation
Public Interface IPropertyInitializerOperation
Implements ISymbolInitializerOperation
- Implements
Remarks
This node is associated with the following operation kinds:
This interface is reserved for implementation by its associated APIs. We reserve the right to change it in the future.
Properties
ChildOperations |
An enumerable of child operations for this operation. (Inherited from IOperation) |
Children |
Obsolete.
An array of child operations for this operation. Deprecated: please use ChildOperations. (Inherited from IOperation) |
ConstantValue |
If the operation is an expression that evaluates to a constant value, HasValue is true and Value is the value of the expression. Otherwise, HasValue is false. (Inherited from IOperation) |
InitializedProperties |
Initialized properties. There can be multiple properties for Visual Basic 'WithEvents' declaration with AsNew clause. |
IsImplicit |
Set to True if compiler generated /implicitly computed by compiler code (Inherited from IOperation) |
Kind |
Identifies the kind of the operation. (Inherited from IOperation) |
Language |
The source language of the IOperation. Possible values are CSharp and VisualBasic. (Inherited from IOperation) |
Locals |
Local declared in and scoped to the Value. (Inherited from ISymbolInitializerOperation) |
Parent |
IOperation that has this operation as a child. Null for the root. (Inherited from IOperation) |
SemanticModel |
Optional semantic model that was used to generate this operation. Non-null for operations generated from source with GetOperation(SyntaxNode, CancellationToken) API and operation callbacks made to analyzers. Null for operations inside a ControlFlowGraph. (Inherited from IOperation) |
Syntax |
Syntax that was analyzed to produce the operation. (Inherited from IOperation) |
Type |
Result type of the operation, or null if the operation does not produce a result. (Inherited from IOperation) |
Value |
Underlying initializer value. (Inherited from ISymbolInitializerOperation) |
Methods
Accept(OperationVisitor) | (Inherited from IOperation) |
Accept<TArgument,TResult>(OperationVisitor<TArgument,TResult>, TArgument) | (Inherited from IOperation) |
Extension Methods
Descendants(IOperation) |
Returns all the descendant operations of the given |
DescendantsAndSelf(IOperation) |
Returns all the descendant operations of the given |