IForToLoopOperation Interface

Definition

Represents a for to loop with loop control variable and initial, limit and step values for the control variable.

Current usage: (1) VB 'For ... To ... Step' loop statement

public interface class IForToLoopOperation : Microsoft::CodeAnalysis::Operations::ILoopOperation
public interface IForToLoopOperation : Microsoft.CodeAnalysis.Operations.ILoopOperation
type IForToLoopOperation = interface
    interface ILoopOperation
    interface IOperation
Public Interface IForToLoopOperation
Implements ILoopOperation
Implements

Remarks

This interface is reserved for implementation by its associated APIs. We reserve the right to change it in the future.

Properties

Body

Body of the loop.

(Inherited from ILoopOperation)
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)
ContinueLabel

Loop continue label.

(Inherited from ILoopOperation)
ExitLabel

Loop exit/break label.

(Inherited from ILoopOperation)
InitialValue

Operation for setting the initial value of the loop control variable. This comes from the expression between the 'For' and 'To' keywords.

IsChecked

true if arithmetic operations behind this loop are 'checked'.

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)
LimitValue

Operation for the limit value of the loop control variable. This comes from the expression after the 'To' keyword.

Locals

Declared locals.

(Inherited from ILoopOperation)
LoopControlVariable

Refers to the operation for declaring a new local variable or reference an existing variable or an expression.

LoopKind

Kind of the loop.

(Inherited from ILoopOperation)
NextVariables

Optional list of comma separated next variables at loop bottom.

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)
StepValue

Operation for the step value of the loop control variable. This comes from the expression after the 'Step' keyword, or inferred by the compiler if 'Step' clause is omitted.

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)

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 operation in evaluation order.

DescendantsAndSelf(IOperation)

Returns all the descendant operations of the given operation including the given operation in evaluation order.

Applies to