Skip to content
DocsTry Aspire
DocsTry

IExecutionConfigurationResult Properties

InterfaceProperties7 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; }
ArgumentsSection titled ArgumentsabstractIEnumerable<(string Value, bool IsSensitive)>
Gets the processed arguments to apply to the resource.
public abstract IEnumerable<(string Value, bool IsSensitive)> Arguments { get; }
ArgumentsWithUnprocessedSection titled ArgumentsWithUnprocessedabstractIEnumerable<(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; }
EnvironmentVariablesSection titled EnvironmentVariablesabstractIEnumerable<KeyValuePair<string, string>>
Gets the processed environment variables to apply to the resource.
public abstract IEnumerable<KeyValuePair<string, string>> EnvironmentVariables { get; }
EnvironmentVariablesWithUnprocessedSection titled EnvironmentVariablesWithUnprocessedabstractIEnumerable<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; }
ExceptionSection titled ExceptionabstractnullableException?
Gets any exception that occurred while building the configuration.
public abstract Exception? Exception { get; }
ReferencesSection titled ReferencesabstractIEnumerable<object>
Gets the set of references such as IValueProvider or IManifestExpressionProvider that were used to produce this configuration.
public abstract IEnumerable<object> References { get; }