Contexts: Contexts¶
This page mirrors the Contexts section from Contexts.
ContextBuilder¶
Source file, signature, and docstring
Member
ContextBuilder(string configurationFile, IList<string>? referenceResolutionPaths = null, IList<string>? uniqueIdPathRegexes = null)
Kind constructor
Declaring Type ContextBuilder
Source File QaaS.Framework.SDK/ContextObjects/ContextBuilder.cs
Signature
public ContextBuilder(string configurationFile, IList<string>? referenceResolutionPaths = null, IList<string>? uniqueIdPathRegexes = null)
Docstring
Creates a context builder that starts from a base QaaS configuration file.
Use this constructor when the context should load its initial configuration from a file path before overwrite sources and reference resolution are applied.
ContextBuilder¶
Source file, signature, and docstring
Member
ContextBuilder(IConfigurationBuilder configurationBuilder, IList<string>? referenceResolutionPaths = null, IList<string>? uniqueIdPathRegexes = null)
Kind constructor
Declaring Type ContextBuilder
Source File QaaS.Framework.SDK/ContextObjects/ContextBuilder.cs
Signature
public ContextBuilder(IConfigurationBuilder configurationBuilder, IList<string>? referenceResolutionPaths = null, IList<string>? uniqueIdPathRegexes = null)
Docstring
Creates a context builder that starts from an existing configuration builder pipeline.
Use this constructor when configuration sources are assembled externally and should be handed to the QaaS context pipeline as-is.