1 instantiation of GetAuthenticationCredentialsResponse
NuGet.Protocol (1)
_generated\53\PluginJsonContext.GetAuthenticationCredentialsResponse.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
((string)args[0], (string)args[1], (string)args[2], (global::System.Collections.Generic.IList<string>)args[3], (global::NuGet.Protocol.Plugins.MessageResponseCode)args[4]),
38 references to GetAuthenticationCredentialsResponse
NuGet.Credentials (3)
SecurePluginCredentialProvider.cs (3)
129
var
credentialResponse = await creationResult.Plugin.Connection.SendRequestAndReceiveResponseAsync<GetAuthenticationCredentialsRequest,
GetAuthenticationCredentialsResponse
>(
206
private static CredentialResponse GetAuthenticationCredentialsResponseToCredentialResponse(
GetAuthenticationCredentialsResponse
credentialResponse)
NuGet.Protocol (35)
_generated\53\PluginJsonContext.GetAuthenticationCredentialsResponse.g.cs (31)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
>? _GetAuthenticationCredentialsResponse;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
> GetAuthenticationCredentialsResponse
22
get => _GetAuthenticationCredentialsResponse ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
>)Options.GetTypeInfo(typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
> Create_GetAuthenticationCredentialsResponse(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(string), typeof(string), typeof(string), typeof(global::System.Collections.Generic.IList<string>), typeof(global::NuGet.Protocol.Plugins.MessageResponseCode)}, modifiers: null),
41
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
>(options, objectInfo);
58
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
),
60
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)obj).Username,
68
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
).GetProperty("Username", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
78
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
),
80
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)obj).Password,
88
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
).GetProperty("Password", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
98
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
),
100
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)obj).Message,
108
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
).GetProperty("Message", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
118
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
),
120
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)obj).AuthenticationTypes,
128
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
).GetProperty("AuthenticationTypes", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<string>), global::System.Array.Empty<global::System.Type>(), null),
138
DeclaringType = typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
),
140
Getter = static obj => ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)obj).ResponseCode,
148
AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
).GetProperty("ResponseCode", InstanceMemberBindingFlags, null, typeof(global::NuGet.Protocol.Plugins.MessageResponseCode), global::System.Array.Empty<global::System.Type>(), null),
158
private void GetAuthenticationCredentialsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
? value)
168
string __value_Username = ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)value).Username;
173
string __value_Password = ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)value).Password;
178
string __value_Message = ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)value).Message;
183
global::System.Collections.Generic.IList<string> __value_AuthenticationTypes = ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)value).AuthenticationTypes;
190
global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
)value).ResponseCode, MessageResponseCode);
_generated\95\PluginJsonContext.GetJsonTypeInfo.g.cs (1)
62
if (type == typeof(global::NuGet.Protocol.Plugins.
GetAuthenticationCredentialsResponse
))
Plugins\MessageConverter.cs (2)
76
[typeof(
GetAuthenticationCredentialsResponse
)] = (w, p) => JsonSerializer.Serialize(w, (
GetAuthenticationCredentialsResponse
)p, PluginJsonContext.Default.GetAuthenticationCredentialsResponse),
Plugins\PluginJsonContext.cs (1)
18
[JsonSerializable(typeof(
GetAuthenticationCredentialsResponse
))]