3 writes to ConfirmationMessage
Aspire.Hosting (3)
artifacts\obj\Aspire.Hosting\Debug\net8.0\Dashboard\proto\ResourceService.cs (2)
992ConfirmationMessage = other.ConfirmationMessage; 1101ConfirmationMessage = input.ReadString();
Dashboard\proto\Partials.cs (1)
89resource.Commands.Add(new ResourceCommand { Name = command.Name, DisplayName = command.DisplayName, DisplayDescription = command.DisplayDescription ?? string.Empty, Parameter = ResourceSnapshot.ConvertToValue(command.Parameter), ConfirmationMessage = command.ConfirmationMessage ?? string.Empty, IconName = command.IconName ?? string.Empty, IconVariant = MapIconVariant(command.IconVariant), IsHighlighted = command.IsHighlighted, State = MapCommandState(command.State) });
6 references to ConfirmationMessage
Aspire.Hosting (6)
artifacts\obj\Aspire.Hosting\Debug\net8.0\Dashboard\proto\ResourceService.cs (6)
813if (ConfirmationMessage != other.ConfirmationMessage) return false; 829if (HasConfirmationMessage) hash ^= ConfirmationMessage.GetHashCode(); 910output.WriteString(ConfirmationMessage); 953size += 1 + pb::CodedOutputStream.ComputeStringSize(ConfirmationMessage); 992ConfirmationMessage = other.ConfirmationMessage;