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