IExecutionConfigurationResult
Interfacenet10.0
Configuration (arguments and environment variables) to apply to a specific resource.
namespace Aspire.Hosting.ApplicationModel;
public interface IExecutionConfigurationResult{ // ...}7 members
Properties7
Section titled Properties Gets additional configuration data associated with the resource configuration.
IEnumerable<(string Value, bool IsSensitive)> Gets the processed arguments to apply to the resource.
IEnumerable<(object Unprocessed, string Processed, bool IsSensitive)> Gets the arguments for the resource with the orgiginal unprocessed values included.
IEnumerable<KeyValuePair<string, string>> Gets the processed environment variables to apply to the resource.
IEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>> Gets the environment variables to apply to the resource with the original unprocessed values included.
IEnumerable<object> Gets the set of references such as
IValueProvider or IManifestExpressionProvider that were used to produce this configuration.