IExecutionConfigurationResult
Interface net10.0
Configuration (arguments and environment variables) to apply to a specific resource.
namespace Aspire.Hosting.ApplicationModel;
public interface IExecutionConfigurationResult{ // ...} 7 members
Properties7
Section titled PropertiesAdditionalConfigurationDataabstractget Gets additional configuration data associated with the resource configuration.
ArgumentsabstractgetIEnumerable<(string Value, bool IsSensitive)> Gets the processed arguments to apply to the resource.
ArgumentsWithUnprocessedabstractgetIEnumerable<(object Unprocessed, string Processed, bool IsSensitive)> Gets the arguments for the resource with the orgiginal unprocessed values included.
EnvironmentVariablesabstractgetIEnumerable<KeyValuePair<string, string>> Gets the processed environment variables to apply to the resource.
EnvironmentVariablesWithUnprocessedabstractgetIEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>> Gets the environment variables to apply to the resource with the original unprocessed values included.
ExceptionabstractgetException? Gets any exception that occurred while building the configuration.
ReferencesabstractgetIEnumerable<object> Gets the set of references such as
IValueProvider or IManifestExpressionProvider that were used to produce this configuration.