Skip to content

Transactions: Data source selection

This page mirrors the Data source selection section from Transactions.

AddDataSource

Source file, signature, and docstring

Member TransactionBuilder.AddDataSource(string dataSourceName)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder AddDataSource(string dataSourceName)

Docstring

Adds the supplied data source to the current Runner transaction builder instance.

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

CreateDataSource

Source file, signature, and docstring

Member TransactionBuilder.CreateDataSource(string dataSourceName)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder CreateDataSource(string dataSourceName)

Docstring

Creates or adds the configured data source entry on the current Runner transaction builder instance.

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

AddDataSourcePattern

Source file, signature, and docstring

Member TransactionBuilder.AddDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder AddDataSourcePattern(string dataSourcePattern)

Docstring

Adds the supplied data source pattern to the current Runner transaction builder instance.

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

CreateDataSourcePattern

Source file, signature, and docstring

Member TransactionBuilder.CreateDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder CreateDataSourcePattern(string dataSourcePattern)

Docstring

Creates or adds the configured data source pattern entry on the current Runner transaction builder instance.

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

ReadDataSources

Source file, signature, and docstring

Member TransactionBuilder.ReadDataSources()

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public IReadOnlyList<string> ReadDataSources()

Docstring

Returns the configured data sources currently stored on the Runner transaction builder instance.

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

UpdateDataSource

Source file, signature, and docstring

Member TransactionBuilder.UpdateDataSource(string existingValue, string newValue)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder UpdateDataSource(string existingValue, string newValue)

Docstring

Updates the configured data source stored on the current Runner transaction builder instance.

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

DeleteDataSource

Source file, signature, and docstring

Member TransactionBuilder.DeleteDataSource(string dataSourceName)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder DeleteDataSource(string dataSourceName)

Docstring

Removes the configured data source from the current Runner transaction builder instance.

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

ReadDataSourcePatterns

Source file, signature, and docstring

Member TransactionBuilder.ReadDataSourcePatterns()

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public IReadOnlyList<string> ReadDataSourcePatterns()

Docstring

Returns the configured data source patterns currently stored on the Runner transaction builder instance.

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

UpdateDataSourcePattern

Source file, signature, and docstring

Member TransactionBuilder.UpdateDataSourcePattern(string existingValue, string newValue)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder UpdateDataSourcePattern(string existingValue, string newValue)

Docstring

Updates the configured data source pattern stored on the current Runner transaction builder instance.

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

DeleteDataSourcePattern

Source file, signature, and docstring

Member TransactionBuilder.DeleteDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type TransactionBuilder

Source File QaaS.Runner.Sessions/Actions/Transactions/Builders/TransactionBuilder.cs

Signature

public TransactionBuilder DeleteDataSourcePattern(string dataSourcePattern)

Docstring

Removes the configured data source pattern from the current Runner transaction builder instance.

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