Deveel.Data.Sql.Statements.LoopStatement.Control C# (CSharp) Method

Control() private method

private Control ( LoopControlType controlType ) : void
controlType LoopControlType
return void
        internal void Control(LoopControlType controlType)
        {
            if (controlType == LoopControlType.Continue) {
                Continue = true;
            } else if (controlType == LoopControlType.Exit) {
                Exit = true;
            }
        }