Skip to content

Data Sources

Each entry uses the short function name as the table-of-contents label. Expand an entry to inspect its source file, signature, and XML doc comments.

The functions on this page are grouped by responsibility so related operations stay together.

Identity and hook selection

Named

Source file, signature, and docstring

Member DataSourceBuilder.Named(string name)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder Named(string name)

Docstring

Sets the name used for the current Framework data source builder instance.

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

HookNamed

Source file, signature, and docstring

Member DataSourceBuilder.HookNamed(string hookName)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder HookNamed(string hookName)

Docstring

Sets the hook implementation name used by the current Framework data source builder instance.

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

Data source selection

CreateDataSourceName

Source file, signature, and docstring

Member DataSourceBuilder.CreateDataSourceName(string dataSourceName)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder CreateDataSourceName(string dataSourceName)

Docstring

Creates or adds the configured data source name entry on the current Framework data source builder instance.

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

ReadDataSourceNames

Source file, signature, and docstring

Member DataSourceBuilder.ReadDataSourceNames()

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public IReadOnlyList<string> ReadDataSourceNames()

Docstring

Returns the configured data source names currently stored on the Framework data source builder instance.

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

UpdateDataSourceName

Source file, signature, and docstring

Member DataSourceBuilder.UpdateDataSourceName(string existingValue, string newValue)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder UpdateDataSourceName(string existingValue, string newValue)

Docstring

Updates the configured data source name stored on the current Framework data source builder instance.

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

DeleteDataSourceName

Source file, signature, and docstring

Member DataSourceBuilder.DeleteDataSourceName(string dataSourceName)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder DeleteDataSourceName(string dataSourceName)

Docstring

Removes the configured data source name from the current Framework data source builder instance.

Use this method when working with the documented Framework data source 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 DataSourceBuilder.CreateDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder CreateDataSourcePattern(string dataSourcePattern)

Docstring

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

Use this method when working with the documented Framework data source 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 DataSourceBuilder.ReadDataSourcePatterns()

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public IReadOnlyList<string> ReadDataSourcePatterns()

Docstring

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

Use this method when working with the documented Framework data source 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 DataSourceBuilder.UpdateDataSourcePattern(string existingValue, string newValue)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder UpdateDataSourcePattern(string existingValue, string newValue)

Docstring

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

Use this method when working with the documented Framework data source 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 DataSourceBuilder.DeleteDataSourcePattern(string dataSourcePattern)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder DeleteDataSourcePattern(string dataSourcePattern)

Docstring

Removes the configured data source pattern from the current Framework data source builder instance.

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

Configuration

WithSerializer

Source file, signature, and docstring

Member DataSourceBuilder.WithSerializer(SerializeConfig serializeConfig)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder WithSerializer(SerializeConfig serializeConfig)

Docstring

Sets the serializer configuration used by the current Framework data source builder instance.

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

WithDeserializer

Source file, signature, and docstring

Member DataSourceBuilder.WithDeserializer(DeserializeConfig deserializeConfig)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder WithDeserializer(DeserializeConfig deserializeConfig)

Docstring

Sets the deserializer configuration used by the current Framework data source builder instance.

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

Collection helpers

DeleteConfiguration

Source file, signature, and docstring

Member DataSourceBuilder.DeleteConfiguration()

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder DeleteConfiguration()

Docstring

Clears the current generator configuration.

After this call, the builder holds an empty configuration until a new one is supplied.

UpdateConfiguration

Source file, signature, and docstring

Member DataSourceBuilder.UpdateConfiguration(object configuration)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder UpdateConfiguration(object configuration)

Docstring

Returns the configuration currently stored on the Framework data source builder instance.

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

General

IsLazy

Source file, signature, and docstring

Member DataSourceBuilder.IsLazy()

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder IsLazy()

Docstring

Marks the data source for lazy resolution.

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

Configure

Source file, signature, and docstring

Member DataSourceBuilder.Configure(object configuration)

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSourceBuilder Configure(object configuration)

Docstring

Replaces the generator configuration with the supplied object.

The supplied object is serialized to JSON and loaded into the builder as the new generator configuration.

Register

Source file, signature, and docstring

Member DataSourceBuilder.Register()

Kind function

Declaring Type DataSourceBuilder

Source File QaaS.Framework.SDK/DataSourceObjects/DataSourceBuilder.cs

Signature

public DataSource Register()

Docstring

Registers the configured data source definition and returns the resulting data source descriptor.

Registration produces the immutable data-source descriptor that is later resolved against generator hooks during execution build.