5 instantiations of GetCredentialsResponse
NuGet.Protocol (5)
_generated\55\PluginJsonContext.GetCredentialsResponse.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::NuGet.Protocol.Plugins.
GetCredentialsResponse
((global::NuGet.Protocol.Plugins.MessageResponseCode)args[0], (string)args[1], (string)args[2], (global::System.Collections.Generic.IReadOnlyList<string>)args[3]),
Plugins\RequestHandlers\GetCredentialsRequestHandler.cs (4)
168
responsePayload = new
GetCredentialsResponse
(
176
responsePayload = new
GetCredentialsResponse
(
186
responsePayload = new
GetCredentialsResponse
(
194
responsePayload = new
GetCredentialsResponse
(
33 references to GetCredentialsResponse
NuGet.Protocol (33)
_generated\55\PluginJsonContext.GetCredentialsResponse.g.cs (27)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
>? _GetCredentialsResponse;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
> GetCredentialsResponse
22
get => _GetCredentialsResponse ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
>)Options.GetTypeInfo(typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
> Create_GetCredentialsResponse(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(global::NuGet.Protocol.Plugins.MessageResponseCode), typeof(string), typeof(string), typeof(global::System.Collections.Generic.IReadOnlyList<string>)}, modifiers: null),
41
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::NuGet.Protocol.Plugins.
GetCredentialsResponse
>(options, objectInfo);
58
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
),
60
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)obj).Password,
68
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
).GetProperty("Password", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
78
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
),
80
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)obj).ResponseCode,
88
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
).GetProperty("ResponseCode", InstanceMemberBindingFlags, null, typeof(global::NuGet.Protocol.Plugins.MessageResponseCode), global::System.Array.Empty<global::System.Type>(), null),
98
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
),
100
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)obj).Username,
108
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
).GetProperty("Username", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
118
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
),
120
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)obj).AuthenticationTypes,
128
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
).GetProperty("AuthenticationTypes", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IReadOnlyList<string>), global::System.Array.Empty<global::System.Type>(), null),
138
private void GetCredentialsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.
GetCredentialsResponse
? value)
148
string __value_Password = ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)value).Password;
154
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)value).ResponseCode, MessageResponseCode);
155
string __value_Username = ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)value).Username;
160
global::System.Collections.Generic.IReadOnlyList<string> __value_AuthenticationTypes = ((global::NuGet.Protocol.Plugins.
GetCredentialsResponse
)value).AuthenticationTypes;
_generated\95\PluginJsonContext.GetJsonTypeInfo.g.cs (1)
70
if (type == typeof(global::NuGet.Protocol.Plugins.
GetCredentialsResponse
))
Plugins\MessageConverter.cs (2)
78
[typeof(
GetCredentialsResponse
)] = (w, p) => JsonSerializer.Serialize(w, (
GetCredentialsResponse
)p, PluginJsonContext.Default.GetCredentialsResponse),
Plugins\Messages\GetCredentialsResponse.cs (1)
36
/// Initializes a new instance of the <see cref="
GetCredentialsResponse
" /> class.
Plugins\PluginJsonContext.cs (1)
20
[JsonSerializable(typeof(
GetCredentialsResponse
))]
Plugins\RequestHandlers\GetCredentialsRequestHandler.cs (1)
144
GetCredentialsResponse
responsePayload;