Skip to content

Executions: Links

This page mirrors the Links section from Executions.

Source file, signature, and docstring

Member ExecutionBuilder.CreateLink(LinkBuilder linkBuilder)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public ExecutionBuilder CreateLink(LinkBuilder linkBuilder)

Docstring

Creates or adds the configured link entry on the current Runner execution builder instance.

Use this method when working with the documented Runner execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.

Source file, signature, and docstring

Member ExecutionBuilder.ReadLinks()

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public IReadOnlyList<LinkBuilder> ReadLinks()

Docstring

Returns the configured links currently stored on the Runner execution builder instance.

Use this method when working with the documented Runner execution builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.

ReadLinkAt

Source file, signature, and docstring

Member ExecutionBuilder.ReadLinkAt(int index)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public LinkBuilder? ReadLinkAt(int index)

Docstring

Returns the configured link currently stored at the specified index on the Runner execution builder instance.

Use this method when working with the documented Runner execution builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.

UpdateLinkAt

Source file, signature, and docstring

Member ExecutionBuilder.UpdateLinkAt(int index, LinkBuilder linkBuilder)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public ExecutionBuilder UpdateLinkAt(int index, LinkBuilder linkBuilder)

Docstring

Updates the configured link at the specified index on the current Runner execution builder instance.

Use this method when working with the documented Runner execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.

DeleteLinkAt

Source file, signature, and docstring

Member ExecutionBuilder.DeleteLinkAt(int index)

Kind function

Declaring Type ExecutionBuilder

Source File QaaS.Runner/ExecutionBuilder.cs

Signature

public ExecutionBuilder DeleteLinkAt(int index)

Docstring

Removes the configured link at the specified index from the current Runner execution builder instance.

Use this method when working with the documented Runner execution builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.