Skip to content
Docs Try Aspire

IExecutionConfigurationResult Properties

Interface Properties 7 members
Configuration (arguments and environment variables) to apply to a specific resource.
Gets additional configuration data associated with the resource configuration.
public abstract IEnumerable<IExecutionConfigurationData> AdditionalConfigurationData { get; }
Arguments Section titled Arguments abstract IEnumerable<(string Value, bool IsSensitive)>
Gets the processed arguments to apply to the resource.
public abstract IEnumerable<(string Value, bool IsSensitive)> Arguments { get; }
ArgumentsWithUnprocessed Section titled ArgumentsWithUnprocessed abstract IEnumerable<(object Unprocessed, string Processed, bool IsSensitive)>
Gets the arguments for the resource with the orgiginal unprocessed values included.
public abstract IEnumerable<(object Unprocessed, string Processed, bool IsSensitive)> ArgumentsWithUnprocessed { get; }
EnvironmentVariables Section titled EnvironmentVariables abstract IEnumerable<KeyValuePair<string, string>>
Gets the processed environment variables to apply to the resource.
public abstract IEnumerable<KeyValuePair<string, string>> EnvironmentVariables { get; }
EnvironmentVariablesWithUnprocessed Section titled EnvironmentVariablesWithUnprocessed abstract IEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>>
Gets the environment variables to apply to the resource with the original unprocessed values included.
public abstract IEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>> EnvironmentVariablesWithUnprocessed { get; }
Exception Section titled Exception abstractnullable Exception?
Gets any exception that occurred while building the configuration.
public abstract Exception? Exception { get; }
References Section titled References abstract IEnumerable<object>
Gets the set of references such as IValueProvider or IManifestExpressionProvider that were used to produce this configuration.
public abstract IEnumerable<object> References { get; }