2 instantiations of GetAuthenticationCredentialsRequest
NuGet.Credentials (1)
SecurePluginCredentialProvider.cs (1)
128var request = new GetAuthenticationCredentialsRequest(uri, isRetry, nonInteractive, _canShowDialog);
NuGet.Protocol (1)
_generated\52\PluginJsonContext.GetAuthenticationCredentialsRequest.g.cs (1)
32ObjectWithParameterizedConstructorCreator = static args => new global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest((global::System.Uri)args[0], (bool)args[1], (bool)args[2], (bool)args[3]),
33 references to GetAuthenticationCredentialsRequest
NuGet.Credentials (2)
SecurePluginCredentialProvider.cs (2)
128var request = new GetAuthenticationCredentialsRequest(uri, isRetry, nonInteractive, _canShowDialog); 129var credentialResponse = await creationResult.Plugin.Connection.SendRequestAndReceiveResponseAsync<GetAuthenticationCredentialsRequest, GetAuthenticationCredentialsResponse>(
NuGet.Protocol (31)
_generated\52\PluginJsonContext.GetAuthenticationCredentialsRequest.g.cs (27)
13private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest>? _GetAuthenticationCredentialsRequest; 19public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest> GetAuthenticationCredentialsRequest 22get => _GetAuthenticationCredentialsRequest ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest>)Options.GetTypeInfo(typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)); 25private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest> Create_GetAuthenticationCredentialsRequest(global::System.Text.Json.JsonSerializerOptions options) 27if (!TryGetTypeInfoForRuntimeCustomConverter<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest> jsonTypeInfo)) 29var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest> 35ConstructorAttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(global::System.Uri), typeof(bool), typeof(bool), typeof(bool)}, modifiers: null), 41jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest>(options, objectInfo); 58DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest), 60Getter = static obj => ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)obj).Uri, 68AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest).GetProperty("Uri", InstanceMemberBindingFlags, null, typeof(global::System.Uri), global::System.Array.Empty<global::System.Type>(), null), 78DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest), 80Getter = static obj => ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)obj).IsRetry, 88AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest).GetProperty("IsRetry", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null), 98DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest), 100Getter = static obj => ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)obj).IsNonInteractive, 108AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest).GetProperty("IsNonInteractive", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null), 118DeclaringType = typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest), 120Getter = static obj => ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)obj).CanShowDialog, 128AttributeProviderFactory = static () => typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest).GetProperty("CanShowDialog", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null), 138private void GetAuthenticationCredentialsRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest? value) 148global::System.Uri __value_Uri = ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)value).Uri; 154writer.WriteBoolean(PropName_IsRetry, ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)value).IsRetry); 155writer.WriteBoolean(PropName_IsNonInteractive, ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)value).IsNonInteractive); 156writer.WriteBoolean(PropName_CanShowDialog, ((global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest)value).CanShowDialog);
_generated\95\PluginJsonContext.GetJsonTypeInfo.g.cs (1)
58if (type == typeof(global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest))
Plugins\MessageConverter.cs (2)
75[typeof(GetAuthenticationCredentialsRequest)] = (w, p) => JsonSerializer.Serialize(w, (GetAuthenticationCredentialsRequest)p, PluginJsonContext.Default.GetAuthenticationCredentialsRequest),
Plugins\PluginJsonContext.cs (1)
17[JsonSerializable(typeof(GetAuthenticationCredentialsRequest))]