2 writes to IsOptional
aspire (2)
BackchannelJsonSerializerContext.DtoPropertyInfo.g.cs (1)
101
Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).
IsOptional
= value!,
CapabilitiesJsonContext.DtoPropertyInfo.g.cs (1)
101
Setter = static (obj, value) => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).
IsOptional
= value!,
6 references to IsOptional
aspire (6)
BackchannelJsonSerializerContext.DtoPropertyInfo.g.cs (2)
100
Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).
IsOptional
,
131
writer.WriteBoolean(PropName_IsOptional, ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)value).
IsOptional
);
CapabilitiesJsonContext.DtoPropertyInfo.g.cs (2)
100
Getter = static obj => ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)obj).
IsOptional
,
139
writer.WriteBoolean(PropName_IsOptional, ((global::Aspire.Cli.Commands.Sdk.DtoPropertyInfo)value).
IsOptional
);
Commands\Sdk\SdkDumpCommand.cs (2)
301
var optional = p.
IsOptional
? "?" : "";
414
var optional = p.
IsOptional
? "?" : "";