Skip to content
Docs Try Aspire

GenerateParameterDefault Methods

Class Methods 2 members
Represents that a default value should be generated.
GetDefaultValue Section titled GetDefaultValue override string
Generates a value for the parameter.
public sealed class GenerateParameterDefault
{
public override string GetDefaultValue()
{
// ...
}
}
string The generated string value.
WriteToManifest(ManifestPublishingContext) Section titled WriteToManifest(ManifestPublishingContext) override
Writes the current ParameterDefault to the manifest context.
public sealed class GenerateParameterDefault
{
public override void WriteToManifest(
ManifestPublishingContext context)
{
// ...
}
}
context ManifestPublishingContext The context for the manifest publishing operation.