Sessions: Stages¶
This page mirrors the Stages section from Sessions.
AddStage¶
Source file, signature, and docstring
Member
SessionBuilder.AddStage(StageConfig stage)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Adds the supplied stage to the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
CreateStage¶
Source file, signature, and docstring
Member
SessionBuilder.CreateStage(StageConfig stage)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Creates or adds the configured stage entry on the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
ReadStages¶
Source file, signature, and docstring
Member
SessionBuilder.ReadStages()
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Returns the configured stages currently stored on the Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.
ReadStage¶
Source file, signature, and docstring
Member
SessionBuilder.ReadStage(int stageNumber)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Returns the configured stage currently stored on the Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.
UpdateStage¶
Source file, signature, and docstring
Member
SessionBuilder.UpdateStage(int stageNumber, StageConfig stage)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Updates the configured stage stored on the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
DeleteStage¶
Source file, signature, and docstring
Member
SessionBuilder.DeleteStage(int stageNumber)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Removes the configured stage from the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.