3 instantiations of DoctorCheckSummary
aspire (3)
Commands\DoctorCommand.cs (1)
72Summary = new DoctorCheckSummary
JsonSourceGenerationContext.DoctorCheckSummary.g.cs (1)
31ObjectCreator = () => new global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary(),
Mcp\DoctorTool.cs (1)
50Summary = new DoctorCheckSummary
34 references to DoctorCheckSummary
aspire (34)
JsonSourceGenerationContext.cs (1)
18[JsonSerializable(typeof(DoctorCheckSummary))]
JsonSourceGenerationContext.DoctorCheckResponse.g.cs (5)
32ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckResponse(){ Checks = (global::System.Collections.Generic.List<global::Aspire.Cli.Utils.EnvironmentChecker.EnvironmentCheckResult>)args[0], Summary = (global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)args[1] }, 74var info1 = new global::System.Text.Json.Serialization.Metadata.JsonPropertyInfoValues<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary> 89AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckResponse).GetProperty("Summary", InstanceMemberBindingFlags, null, typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary), global::System.Array.Empty<global::System.Type>(), null), 92properties[1] = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreatePropertyInfo<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary>(options, info1); 134ParameterType = typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary),
JsonSourceGenerationContext.DoctorCheckSummary.g.cs (26)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary>? _DoctorCheckSummary; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary> DoctorCheckSummary 22get => _DoctorCheckSummary ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary>)Options.GetTypeInfo(typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary> Create_DoctorCheckSummary(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary> 35ConstructorAttributeProviderFactory = static () => typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary>(options, objectInfo); 56DeclaringType = typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary), 58Getter = static obj => ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)obj).Passed, 59Setter = static (obj, value) => ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)obj).Passed = value!, 66AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary).GetProperty("Passed", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null), 76DeclaringType = typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary), 78Getter = static obj => ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)obj).Warnings, 79Setter = static (obj, value) => ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)obj).Warnings = value!, 86AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary).GetProperty("Warnings", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null), 96DeclaringType = typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary), 98Getter = static obj => ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)obj).Failed, 99Setter = static (obj, value) => ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)obj).Failed = value!, 106AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary).GetProperty("Failed", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null), 116private void DoctorCheckSummarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary? value) 126writer.WriteNumber(PropName_passed, ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)value).Passed); 127writer.WriteNumber(PropName_warnings, ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)value).Warnings); 128writer.WriteNumber(PropName_failed, ((global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary)value).Failed);
JsonSourceGenerationContext.GetJsonTypeInfo.g.cs (1)
38if (type == typeof(global::Aspire.Cli.Utils.EnvironmentChecker.DoctorCheckSummary))
Utils\EnvironmentChecker\EnvironmentCheckResult.cs (1)
120public required DoctorCheckSummary Summary { get; set; }