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