2 instantiations of InteractionInput
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\ResourceService.cs (2)
9246
private static readonly pb::MessageParser<InteractionInput> _parser = new pb::MessageParser<InteractionInput>(() => new
InteractionInput
());
9287
return new
InteractionInput
(this);
20 references to InteractionInput
Aspire.Dashboard (20)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\ResourceService.cs (16)
189
new pbr::GeneratedClrTypeInfo(typeof(global::Aspire.ResourceService.Proto.V1.
InteractionInput
), global::Aspire.ResourceService.Proto.V1.
InteractionInput
.Parser, new[]{ "Label", "Placeholder", "InputType", "Required", "Options", "Value" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, })
9100
private static readonly pb::FieldCodec<global::Aspire.ResourceService.Proto.V1.
InteractionInput
> _repeated_inputItems_codec
9101
= pb::FieldCodec.ForMessage(10, global::Aspire.ResourceService.Proto.V1.
InteractionInput
.Parser);
9102
private readonly pbc::RepeatedField<global::Aspire.ResourceService.Proto.V1.
InteractionInput
> inputItems_ = new pbc::RepeatedField<global::Aspire.ResourceService.Proto.V1.
InteractionInput
>();
9105
public pbc::RepeatedField<global::Aspire.ResourceService.Proto.V1.
InteractionInput
> InputItems {
9241
public sealed partial class InteractionInput : pb::IMessage<
InteractionInput
>
9246
private static readonly pb::MessageParser<
InteractionInput
> _parser = new pb::MessageParser<
InteractionInput
>(() => new InteractionInput());
9250
public static pb::MessageParser<
InteractionInput
> Parser { get { return _parser; } }
9274
public InteractionInput(
InteractionInput
other) : this() {
9286
public
InteractionInput
Clone() {
9364
return Equals(other as
InteractionInput
);
9369
public bool Equals(
InteractionInput
other) {
9499
public void MergeFrom(
InteractionInput
other) {
Components\Dialogs\InteractionsInputDialog.razor.cs (3)
36
foreach (
var
inputModel in Content.Inputs)
52
if (field.Model is
InteractionInput
inputModel)
63
private static bool IsMissingRequiredValue(
InteractionInput
inputModel)
Model\InteractionsInputsDialogViewModel.cs (1)
11
public required List<
InteractionInput
> Inputs { get; init; }