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