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