2 instantiations of DetachOutputInfo
aspire (2)
Commands\RunCommand.cs (1)
900var result = new DetachOutputInfo(
RunCommandJsonContext.DetachOutputInfo.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::Aspire.Cli.Commands.DetachOutputInfo((string)args[0], (int)args[1], (int)args[2], (string)args[3], (string)args[4]),
34 references to DetachOutputInfo
aspire (34)
Commands\RunCommand.cs (2)
36[JsonSerializable(typeof(DetachOutputInfo))] 900var result = new DetachOutputInfo(
RunCommandJsonContext.DetachOutputInfo.g.cs (31)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.DetachOutputInfo>? _DetachOutputInfo; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.DetachOutputInfo> DetachOutputInfo 22get => _DetachOutputInfo ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.DetachOutputInfo>)Options.GetTypeInfo(typeof(global::Aspire.Cli.Commands.DetachOutputInfo)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.DetachOutputInfo> Create_DetachOutputInfo(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::Aspire.Cli.Commands.DetachOutputInfo>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Aspire.Cli.Commands.DetachOutputInfo> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Aspire.Cli.Commands.DetachOutputInfo> 35ConstructorAttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.DetachOutputInfo).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string), typeof(int), typeof(int), typeof(string), typeof(string)}, modifiers: null), 39jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Aspire.Cli.Commands.DetachOutputInfo>(options, objectInfo); 56DeclaringType = typeof(global::Aspire.Cli.Commands.DetachOutputInfo), 58Getter = static obj => ((global::Aspire.Cli.Commands.DetachOutputInfo)obj).AppHostPath, 66AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.DetachOutputInfo).GetProperty("AppHostPath", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 78DeclaringType = typeof(global::Aspire.Cli.Commands.DetachOutputInfo), 80Getter = static obj => ((global::Aspire.Cli.Commands.DetachOutputInfo)obj).AppHostPid, 88AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.DetachOutputInfo).GetProperty("AppHostPid", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null), 98DeclaringType = typeof(global::Aspire.Cli.Commands.DetachOutputInfo), 100Getter = static obj => ((global::Aspire.Cli.Commands.DetachOutputInfo)obj).CliPid, 108AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.DetachOutputInfo).GetProperty("CliPid", InstanceMemberBindingFlags, null, typeof(int), global::System.Array.Empty<global::System.Type>(), null), 118DeclaringType = typeof(global::Aspire.Cli.Commands.DetachOutputInfo), 120Getter = static obj => ((global::Aspire.Cli.Commands.DetachOutputInfo)obj).DashboardUrl, 128AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.DetachOutputInfo).GetProperty("DashboardUrl", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 138DeclaringType = typeof(global::Aspire.Cli.Commands.DetachOutputInfo), 140Getter = static obj => ((global::Aspire.Cli.Commands.DetachOutputInfo)obj).LogFile, 148AttributeProviderFactory = static () => typeof(global::Aspire.Cli.Commands.DetachOutputInfo).GetProperty("LogFile", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 160private void DetachOutputInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Aspire.Cli.Commands.DetachOutputInfo? value) 170writer.WriteString(PropName_appHostPath, ((global::Aspire.Cli.Commands.DetachOutputInfo)value).AppHostPath); 171writer.WriteNumber(PropName_appHostPid, ((global::Aspire.Cli.Commands.DetachOutputInfo)value).AppHostPid); 172writer.WriteNumber(PropName_cliPid, ((global::Aspire.Cli.Commands.DetachOutputInfo)value).CliPid); 173writer.WriteString(PropName_dashboardUrl, ((global::Aspire.Cli.Commands.DetachOutputInfo)value).DashboardUrl); 174writer.WriteString(PropName_logFile, ((global::Aspire.Cli.Commands.DetachOutputInfo)value).LogFile);
RunCommandJsonContext.GetJsonTypeInfo.g.cs (1)
22if (type == typeof(global::Aspire.Cli.Commands.DetachOutputInfo))