Skip to content

Publishers: Data source selection

This page mirrors the Data source selection section from Publishers.

AddDataSource

Source file, signature, and docstring

Member PublisherBuilder.AddDataSource(string dataSourceName)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder AddDataSource(string dataSourceName)

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.CreateDataSource(string dataSourceName)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder CreateDataSource(string dataSourceName)

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.ReadDataSources()

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public IReadOnlyList<string> ReadDataSources()

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.UpdateDataSource(string existingValue, string newValue)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder UpdateDataSource(string existingValue, string newValue)

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.DeleteDataSource(string dataSourceName)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder DeleteDataSource(string dataSourceName)

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.AddDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder AddDataSourcePattern(string dataSourcePattern)

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.CreateDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder CreateDataSourcePattern(string dataSourcePattern)

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.ReadDataSourcePatterns()

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public IReadOnlyList<string> ReadDataSourcePatterns()

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.UpdateDataSourcePattern(string existingValue, string newValue)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder UpdateDataSourcePattern(string existingValue, string newValue)

Docstring

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

Use this method when working with the documented Runner publisher 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 PublisherBuilder.DeleteDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type PublisherBuilder

Source File QaaS.Runner.Sessions/Actions/Publishers/Builders/PublisherBuilderLogic.cs

Signature

public PublisherBuilder DeleteDataSourcePattern(string dataSourcePattern)

Docstring

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

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