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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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.