5 instantiations of GetCredentialsResponse
NuGet.Protocol (5)
_generated\55\PluginJsonContext.GetCredentialsResponse.g.cs (1)
32ObjectWithParameterizedConstructorCreator = 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)
168responsePayload = new GetCredentialsResponse( 176responsePayload = new GetCredentialsResponse( 186responsePayload = new GetCredentialsResponse( 194responsePayload = new GetCredentialsResponse(
33 references to GetCredentialsResponse
NuGet.Protocol (33)
_generated\55\PluginJsonContext.GetCredentialsResponse.g.cs (27)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetCredentialsResponse>? _GetCredentialsResponse; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetCredentialsResponse> GetCredentialsResponse 22get => _GetCredentialsResponse ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetCredentialsResponse>)Options.GetTypeInfo(typeof(global::NuGet.Protocol.Plugins.GetCredentialsResponse)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetCredentialsResponse> Create_GetCredentialsResponse(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::NuGet.Protocol.Plugins.GetCredentialsResponse>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetCredentialsResponse> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::NuGet.Protocol.Plugins.GetCredentialsResponse> 35ConstructorAttributeProviderFactory = 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), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::NuGet.Protocol.Plugins.GetCredentialsResponse>(options, objectInfo); 58DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetCredentialsResponse), 60Getter = static obj => ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)obj).Password, 68AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.GetCredentialsResponse).GetProperty("Password", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 78DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetCredentialsResponse), 80Getter = static obj => ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)obj).ResponseCode, 88AttributeProviderFactory = 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), 98DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetCredentialsResponse), 100Getter = static obj => ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)obj).Username, 108AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.GetCredentialsResponse).GetProperty("Username", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null), 118DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetCredentialsResponse), 120Getter = static obj => ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)obj).AuthenticationTypes, 128AttributeProviderFactory = 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), 138private void GetCredentialsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetCredentialsResponse? value) 148string __value_Password = ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)value).Password; 154global::System.Text.Json.JsonSerializer.Serialize(writer, ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)value).ResponseCode, MessageResponseCode); 155string __value_Username = ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)value).Username; 160global::System.Collections.Generic.IReadOnlyList<string> __value_AuthenticationTypes = ((global::NuGet.Protocol.Plugins.GetCredentialsResponse)value).AuthenticationTypes;
_generated\95\PluginJsonContext.GetJsonTypeInfo.g.cs (1)
70if (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)
144GetCredentialsResponse responsePayload;