3 instantiations of PluginCredentialResponse
NuGet.Credentials (3)
_generated\1\PluginCredentialResponseJsonContext.PluginCredentialResponse.g.cs (1)
31
ObjectCreator = () => new global::NuGet.Credentials.
PluginCredentialResponse
(),
PluginCredentialProvider.cs (2)
214
? new
PluginCredentialResponse
()
216
?? new
PluginCredentialResponse
();
41 references to PluginCredentialResponse
NuGet.Credentials (41)
_generated\1\PluginCredentialResponseJsonContext.PluginCredentialResponse.g.cs (35)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Credentials.
PluginCredentialResponse
>? _PluginCredentialResponse;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Credentials.
PluginCredentialResponse
> PluginCredentialResponse
22
get => _PluginCredentialResponse ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Credentials.
PluginCredentialResponse
>)Options.GetTypeInfo(typeof(global::NuGet.Credentials.
PluginCredentialResponse
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Credentials.
PluginCredentialResponse
> Create_PluginCredentialResponse(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::NuGet.Credentials.
PluginCredentialResponse
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::NuGet.Credentials.
PluginCredentialResponse
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::NuGet.Credentials.
PluginCredentialResponse
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::NuGet.Credentials.
PluginCredentialResponse
).GetConstructor(InstanceMemberBindingFlags, binder: null, global::System.Array.Empty<global::System.Type>(), modifiers: null),
41
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::NuGet.Credentials.
PluginCredentialResponse
>(options, objectInfo);
58
DeclaringType = typeof(global::NuGet.Credentials.
PluginCredentialResponse
),
60
Getter = static obj => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).Username,
61
Setter = static (obj, value) => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).Username = value!,
68
AttributeProviderFactory = static () => typeof(global::NuGet.Credentials.
PluginCredentialResponse
).GetProperty("Username", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
78
DeclaringType = typeof(global::NuGet.Credentials.
PluginCredentialResponse
),
80
Getter = static obj => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).Password,
81
Setter = static (obj, value) => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).Password = value!,
88
AttributeProviderFactory = static () => typeof(global::NuGet.Credentials.
PluginCredentialResponse
).GetProperty("Password", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
98
DeclaringType = typeof(global::NuGet.Credentials.
PluginCredentialResponse
),
100
Getter = static obj => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).Message,
101
Setter = static (obj, value) => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).Message = value!,
108
AttributeProviderFactory = static () => typeof(global::NuGet.Credentials.
PluginCredentialResponse
).GetProperty("Message", InstanceMemberBindingFlags, null, typeof(string), global::System.Array.Empty<global::System.Type>(), null),
118
DeclaringType = typeof(global::NuGet.Credentials.
PluginCredentialResponse
),
120
Getter = static obj => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).AuthTypes,
121
Setter = static (obj, value) => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).AuthTypes = value!,
128
AttributeProviderFactory = static () => typeof(global::NuGet.Credentials.
PluginCredentialResponse
).GetProperty("AuthTypes", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.IList<string>), global::System.Array.Empty<global::System.Type>(), null),
138
DeclaringType = typeof(global::NuGet.Credentials.
PluginCredentialResponse
),
140
Getter = static obj => ((global::NuGet.Credentials.
PluginCredentialResponse
)obj).IsValid,
148
AttributeProviderFactory = static () => typeof(global::NuGet.Credentials.
PluginCredentialResponse
).GetProperty("IsValid", InstanceMemberBindingFlags, null, typeof(bool), global::System.Array.Empty<global::System.Type>(), null),
158
private void PluginCredentialResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Credentials.
PluginCredentialResponse
? value)
168
writer.WriteString(PropName_Username, ((global::NuGet.Credentials.
PluginCredentialResponse
)value).Username);
169
writer.WriteString(PropName_Password, ((global::NuGet.Credentials.
PluginCredentialResponse
)value).Password);
170
writer.WriteString(PropName_Message, ((global::NuGet.Credentials.
PluginCredentialResponse
)value).Message);
172
IListStringSerializeHandler(writer, ((global::NuGet.Credentials.
PluginCredentialResponse
)value).AuthTypes);
173
writer.WriteBoolean(PropName_IsValid, ((global::NuGet.Credentials.
PluginCredentialResponse
)value).IsValid);
_generated\5\PluginCredentialResponseJsonContext.GetJsonTypeInfo.g.cs (1)
26
if (type == typeof(global::NuGet.Credentials.
PluginCredentialResponse
))
PluginCredentialProvider.cs (3)
116
PluginCredentialResponse
response;
173
private
PluginCredentialResponse
GetPluginResponse(PluginCredentialRequest request,
208
PluginCredentialResponse
credentialResponse;
PluginCredentialResponseJsonContext.cs (1)
9
[JsonSerializable(typeof(
PluginCredentialResponse
))]
PluginException.cs (1)
94
PluginCredentialResponse
response)