72 instantiations of Utf8JsonWriter
aspire (8)
Acquisition\InstallSidecarWriter.cs (1)
42using (var writer = new Utf8JsonWriter(stream))
Commands\McpCallCommand.cs (1)
117using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Commands\McpToolsCommand.cs (1)
72using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
src\Shared\Export\ExportArchive.cs (4)
85using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 105using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 113using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 121using var writer = new Utf8JsonWriter(entryStream, s_writerOptions);
src\Shared\IntegrationPackageProbeManifest.cs (1)
134using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
aspire-managed (1)
src\Shared\IntegrationPackageProbeManifest.cs (1)
134using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Aspire.Dashboard (5)
Model\TextVisualizerViewModel.cs (1)
149using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true, Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping });
src\Shared\Export\ExportArchive.cs (4)
85using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 105using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 113using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 121using var writer = new Utf8JsonWriter(entryStream, s_writerOptions);
Aspire.Hosting (2)
Publishing\ManifestPublisher.cs (1)
56using var jsonWriter = JsonWriter ?? new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Publishing\ManifestPublishingExtensions.cs (1)
65using var jsonWriter = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Aspire.Hosting.Azure.EventHubs (2)
AzureEventHubsExtensions.cs (2)
349using var writer = new Utf8JsonWriter(writeStream, new JsonWriterOptions { Indented = true }); 462using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Aspire.Hosting.Azure.ServiceBus (2)
AzureServiceBusExtensions.cs (2)
499using var writer = new Utf8JsonWriter(writeStream, new JsonWriterOptions { Indented = true }); 590using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Aspire.Hosting.Browsers (2)
BrowserLogsCdpProtocol.cs (1)
124using var writer = new Utf8JsonWriter(buffer, s_commandFrameWriterOptions);
BrowserLogsEventLogger.cs (1)
326using var writer = new Utf8JsonWriter(buffer, s_structuredValueWriterOptions);
Aspire.Hosting.Browsers.Tests (2)
src\Aspire.Hosting.Browsers\BrowserLogsCdpProtocol.cs (1)
124using var writer = new Utf8JsonWriter(buffer, s_commandFrameWriterOptions);
src\Aspire.Hosting.Browsers\BrowserLogsEventLogger.cs (1)
326using var writer = new Utf8JsonWriter(buffer, s_structuredValueWriterOptions);
Aspire.Hosting.PostgreSQL (1)
PostgresBuilderExtensions.cs (1)
645using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Aspire.Hosting.RemoteHost (1)
src\Shared\IntegrationPackageProbeManifest.cs (1)
134using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Aspire.Hosting.TestUtilities (5)
Helpers\JsonDocumentManifestPublisher.cs (2)
26using var writer = new Utf8JsonWriter(stream, new() { Indented = true }); 80using var writer = new Utf8JsonWriter(stream, new() { Indented = true });
Utils\ManifestUtils.cs (3)
25var writer = new Utf8JsonWriter(ms); 50var writer = new Utf8JsonWriter(ms, new() { Indented = true }); 69var writer = new Utf8JsonWriter(ms);
dotnet (4)
Commands\Run\VirtualProjectBuildingCommand.cs (1)
534using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Commands\Test\MTP\ArtifactPostProcessingManager.cs (1)
337using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (1)
1438using (var writer = new Utf8JsonWriter(buffer, new JsonWriterOptions { Indented = true }))
ToolManifest\ToolManifestEditor.cs (1)
363using (var writer = new Utf8JsonWriter(arrayBufferWriter, new JsonWriterOptions { Indented = true }))
dotnet-aot (3)
src\sdk\src\Cli\dotnet\Commands\Test\MTP\ArtifactPostProcessingManager.cs (1)
337using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
src\sdk\src\Cli\dotnet\Commands\Test\MTP\Terminal\TerminalTestReporter.cs (1)
1438using (var writer = new Utf8JsonWriter(buffer, new JsonWriterOptions { Indented = true }))
src\sdk\src\Cli\dotnet\ToolManifest\ToolManifestEditor.cs (1)
363using (var writer = new Utf8JsonWriter(arrayBufferWriter, new JsonWriterOptions { Indented = true }))
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\ManagedDataDescriptorNode.cs (1)
98using (var writer = new Utf8JsonWriter(stream))
Microsoft.AspNetCore.Components.Endpoints (5)
Builder\ResourceCollectionUrlEndpoint.cs (1)
101var utf8Writer = new Utf8JsonWriter(content);
CacheView\SerializedRenderFragmentHybridCacheSerializer.cs (1)
26using var writer = new Utf8JsonWriter(target);
Forms\ClientValidationDataWriter.cs (1)
24_writer = new Utf8JsonWriter(_buffer);
Serialization\JsonStoredDataSerializer.cs (2)
161using var writer = new Utf8JsonWriter(buffer); 215using var writer = new Utf8JsonWriter(buffer);
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionDispatcher.cs (2)
229using var jsonWriter = new Utf8JsonWriter((IBufferWriter<byte>)writer); 256using var jsonWriter = new Utf8JsonWriter((IBufferWriter<byte>)writer);
Microsoft.AspNetCore.Http.Connections.Common (1)
src\aspnetcore\src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (1)
24_writer = new Utf8JsonWriter(stream, new JsonWriterOptions()
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Infrastructure\DefaultTempDataSerializer.cs (1)
137using var writer = new Utf8JsonWriter(bufferWriter);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelEventSource.cs (1)
237var writer = new Utf8JsonWriter(bufferWriter);
Microsoft.AspNetCore.SignalR.Common (1)
src\aspnetcore\src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (1)
24_writer = new Utf8JsonWriter(stream, new JsonWriterOptions()
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
src\aspnetcore\src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (1)
24_writer = new Utf8JsonWriter(stream, new JsonWriterOptions()
Microsoft.Extensions.AI.OpenAI (3)
MicrosoftExtensionsAIChatExtensions.cs (1)
240using Utf8JsonWriter writer = new(ms, new() { Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping });
OpenAIResponsesChatClient.cs (1)
889using (var writer = new Utf8JsonWriter(stream))
ResponsesClientContinuationToken.cs (1)
34using Utf8JsonWriter writer = new(stream);
Microsoft.Extensions.AI.OpenAI.Tests (2)
OpenAIResponseClientTests.cs (2)
6960using Utf8JsonWriter writer = new(stream); 7170using (var writer = new Utf8JsonWriter(ms))
Microsoft.Extensions.Caching.Hybrid (1)
Internal\DefaultJsonSerializerFactory.cs (1)
157using var writer = new Utf8JsonWriter(target);
Microsoft.Extensions.DependencyModel (1)
DependencyContextWriter.cs (1)
26using (var jsonWriter = new Utf8JsonWriter(stream, options))
Microsoft.Extensions.Logging.Console (1)
JsonConsoleFormatter.cs (1)
62using (var writer = new Utf8JsonWriter(output, FormatterOptions.JsonWriterOptions))
Microsoft.Extensions.Logging.EventSource (1)
EventSourceLogger.cs (1)
278Utf8JsonWriter writer = t_jsonWriter ??= new Utf8JsonWriter(stream);
Microsoft.NET.Build.Tasks (1)
GenerateRuntimeConfigurationFiles.cs (1)
429using (Utf8JsonWriter writer = new(stream, options))
Microsoft.NET.Sdk.StaticWebAssets.Tasks (1)
Data\StaticAssetsManifest.cs (1)
45var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { SkipValidation = true });
Microsoft.NETCore.Platforms (1)
UpdateRuntimeIdentifierGraph.cs (1)
46using Utf8JsonWriter jsonWriter = new(streamWriter, new JsonWriterOptions { Indented = true });
Microsoft.TemplateEngine.Cli (1)
JExtensions.cs (1)
229using var writer = new Utf8JsonWriter(fileStream);
System.Text.Json (8)
System\Text\Json\Serialization\JsonSerializer.Read.Node.cs (2)
145using (var writer = new Utf8JsonWriter(output, options.GetWriterOptions())) 166using (var writer = new Utf8JsonWriter(output, options.GetWriterOptions()))
System\Text\Json\Serialization\JsonSerializer.Write.Pipe.cs (1)
266var writer = new Utf8JsonWriter(utf8Json, writerOptions);
System\Text\Json\Serialization\JsonSerializer.Write.Stream.cs (1)
410var writer = new Utf8JsonWriter(bufferWriter, writerOptions);
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.WriteHelpers.cs (1)
162var writer = new Utf8JsonWriter(pipeWriter, Options.GetWriterOptions());
System\Text\Json\Writer\Utf8JsonWriter.cs (1)
407internal static Utf8JsonWriter CreateEmptyInstanceForCaching() => new Utf8JsonWriter();
System\Text\Json\Writer\Utf8JsonWriterCache.cs (2)
38writer = new Utf8JsonWriter(bufferWriter, options); 58writer = new Utf8JsonWriter(bufferWriter, options.GetWriterOptions());
1382 references to Utf8JsonWriter
aspire (11)
Acquisition\InstallSidecarWriter.cs (1)
42using (var writer = new Utf8JsonWriter(stream))
Commands\McpCallCommand.cs (1)
117using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Commands\McpToolsCommand.cs (1)
72using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Configuration\FlexibleBooleanConverter.cs (1)
38public override void Write(Utf8JsonWriter writer, bool value, JsonSerializerOptions options)
Configuration\FlexibleBooleanDictionaryConverter.cs (1)
60public override void Write(Utf8JsonWriter writer, Dictionary<string, bool> value, JsonSerializerOptions options)
src\Shared\Export\ExportArchive.cs (4)
85using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 105using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 113using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 121using var writer = new Utf8JsonWriter(entryStream, s_writerOptions);
src\Shared\IntegrationPackageProbeManifest.cs (1)
134using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Utils\EnvironmentChecker\EnvironmentCheckResult.cs (1)
149public override void Write(Utf8JsonWriter writer, EnvironmentCheckStatus value, JsonSerializerOptions options)
aspire-managed (1)
src\Shared\IntegrationPackageProbeManifest.cs (1)
134using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Aspire.Dashboard (7)
Model\GenAI\GenAIMessages.cs (1)
259public override void Write(Utf8JsonWriter writer, MessagePart value, JsonSerializerOptions options)
Model\TextVisualizerViewModel.cs (2)
149using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true, Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping }); 197private static void WriteNumberValue(Utf8JsonWriter writer, Utf8JsonReader reader)
src\Shared\Export\ExportArchive.cs (4)
85using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 105using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 113using var writer = new Utf8JsonWriter(entryStream, s_writerOptions); 121using var writer = new Utf8JsonWriter(entryStream, s_writerOptions);
Aspire.Hosting (7)
Dcp\Model\KubernetesMicroTimeJsonConverter.cs (1)
38public override void Write(Utf8JsonWriter writer, DateTime? value, JsonSerializerOptions options)
Publishing\ManifestPublisher.cs (3)
22public Utf8JsonWriter? JsonWriter { get; set; } 56using var jsonWriter = JsonWriter ?? new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }); 64protected async Task WriteManifestAsync(DistributedApplicationModel model, Utf8JsonWriter jsonWriter, CancellationToken cancellationToken)
Publishing\ManifestPublishingContext.cs (2)
21public sealed class ManifestPublishingContext(DistributedApplicationExecutionContext executionContext, string manifestPath, Utf8JsonWriter writer, CancellationToken cancellationToken = default) 36public Utf8JsonWriter Writer { get; } = writer;
Publishing\ManifestPublishingExtensions.cs (1)
65using var jsonWriter = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Aspire.Hosting.Azure.EventHubs (4)
AzureEventHubConsumerGroupResource.cs (1)
61internal void WriteJsonObjectProperties(Utf8JsonWriter writer)
AzureEventHubResource.cs (1)
80internal void WriteJsonObjectProperties(Utf8JsonWriter writer)
AzureEventHubsExtensions.cs (2)
349using var writer = new Utf8JsonWriter(writeStream, new JsonWriterOptions { Indented = true }); 462using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Aspire.Hosting.Azure.ServiceBus (6)
AzureServiceBusExtensions.cs (2)
499using var writer = new Utf8JsonWriter(writeStream, new JsonWriterOptions { Indented = true }); 590using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
AzureServiceBusQueueResource.cs (1)
160internal void WriteJsonObjectProperties(Utf8JsonWriter writer)
AzureServiceBusRule.cs (1)
115internal void WriteJsonObjectProperties(Utf8JsonWriter writer)
AzureServiceBusSubscriptionResource.cs (1)
149internal void WriteJsonObjectProperties(Utf8JsonWriter writer)
AzureServiceBusTopicResource.cs (1)
109internal void WriteJsonObjectProperties(Utf8JsonWriter writer)
Aspire.Hosting.Browsers (6)
BrowserLogsCdpConnection.cs (1)
228Action<Utf8JsonWriter>? writeParameters,
BrowserLogsCdpProtocol.cs (3)
121internal static byte[] CreateCommandFrame(long id, string method, string? sessionId, Action<Utf8JsonWriter>? writeParameters) 124using var writer = new Utf8JsonWriter(buffer, s_commandFrameWriterOptions); 832public override void Write(Utf8JsonWriter writer, BrowserLogsCdpProtocolValue value, JsonSerializerOptions options)
BrowserLogsEventLogger.cs (2)
326using var writer = new Utf8JsonWriter(buffer, s_structuredValueWriterOptions); 332private static void WriteStructuredValue(Utf8JsonWriter writer, BrowserLogsCdpProtocolValue value)
Aspire.Hosting.Browsers.Tests (6)
src\Aspire.Hosting.Browsers\BrowserLogsCdpConnection.cs (1)
228Action<Utf8JsonWriter>? writeParameters,
src\Aspire.Hosting.Browsers\BrowserLogsCdpProtocol.cs (3)
121internal static byte[] CreateCommandFrame(long id, string method, string? sessionId, Action<Utf8JsonWriter>? writeParameters) 124using var writer = new Utf8JsonWriter(buffer, s_commandFrameWriterOptions); 832public override void Write(Utf8JsonWriter writer, BrowserLogsCdpProtocolValue value, JsonSerializerOptions options)
src\Aspire.Hosting.Browsers\BrowserLogsEventLogger.cs (2)
326using var writer = new Utf8JsonWriter(buffer, s_structuredValueWriterOptions); 332private static void WriteStructuredValue(Utf8JsonWriter writer, BrowserLogsCdpProtocolValue value)
Aspire.Hosting.PostgreSQL (1)
PostgresBuilderExtensions.cs (1)
645using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Aspire.Hosting.RemoteHost (4)
Ats\AtsMarshaller.cs (3)
269public override void Write(Utf8JsonWriter writer, TimeSpan value, JsonSerializerOptions options) 341public override void Write(Utf8JsonWriter writer, TDelegate value, JsonSerializerOptions options) 395public override void Write(Utf8JsonWriter writer, TReferenceExpression value, JsonSerializerOptions options)
src\Shared\IntegrationPackageProbeManifest.cs (1)
134using (var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }))
Aspire.Hosting.TestUtilities (5)
Helpers\JsonDocumentManifestPublisher.cs (2)
26using var writer = new Utf8JsonWriter(stream, new() { Indented = true }); 80using var writer = new Utf8JsonWriter(stream, new() { Indented = true });
Utils\ManifestUtils.cs (3)
25var writer = new Utf8JsonWriter(ms); 50var writer = new Utf8JsonWriter(ms, new() { Indented = true }); 69var writer = new Utf8JsonWriter(ms);
Aspire.Hosting.Yarp (1)
YarpJsonConfigGeneratorBuilder.cs (1)
133public override void Write(Utf8JsonWriter writer, SslProtocols value, JsonSerializerOptions options)
cdac-build-tool (4)
JsonConverter\FieldModelJsonConverter.cs (1)
21public override void Write(Utf8JsonWriter writer, DataDescriptorModel.FieldModel value, JsonSerializerOptions options)
JsonConverter\GlobalModelJsonConverter.cs (1)
16public override void Write(Utf8JsonWriter writer, DataDescriptorModel.GlobalModel value, JsonSerializerOptions options)
JsonConverter\GlobalValueJsonConverter.cs (1)
16public override void Write(Utf8JsonWriter writer, DataDescriptorModel.GlobalValue value, JsonSerializerOptions options)
JsonConverter\TypeModelJsonConverter.cs (1)
18public override void Write(Utf8JsonWriter writer, DataDescriptorModel.TypeModel value, JsonSerializerOptions options)
ConfigurationSchemaGenerator (1)
ConfigSchemaEmitter.cs (1)
735public override void Write(Utf8JsonWriter writer, JsonNode? value, JsonSerializerOptions options)
dotnet (78)
_generated\103\WorkloadSearchVersionsJsonSerializerContext.DictionaryStringDictionaryStringString.g.cs (1)
47private void DictionaryStringDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.Dictionary<string, string>>? value)
_generated\104\WorkloadSearchVersionsJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\105\WorkloadSearchVersionsJsonSerializerContext.IEnumerableDictionaryStringString.g.cs (1)
47private void IEnumerableDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::System.Collections.Generic.Dictionary<string, string>>? value)
_generated\111\WorkloadHistoryJsonSerializerContext.WorkloadHistoryRecord.g.cs (1)
258private void WorkloadHistoryRecordSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.WorkloadHistoryRecord? value)
_generated\112\WorkloadHistoryJsonSerializerContext.WorkloadHistoryState.g.cs (1)
118private void WorkloadHistoryStateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.WorkloadHistoryState? value)
_generated\113\WorkloadHistoryJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\114\WorkloadHistoryJsonSerializerContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
_generated\117\WorkloadHistoryJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\124\PackInfoJsonSerializerContext.PackInfo.g.cs (1)
181private void PackInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.NET.Sdk.WorkloadManifestReader.WorkloadResolver.PackInfo? value)
_generated\13\CliSchemaJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\130\NugetSearchApiJsonSerializerContext.NugetSearchApiAuthorsSerializable.g.cs (1)
78private void NugetSearchApiAuthorsSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiAuthorsSerializable? value)
_generated\131\NugetSearchApiJsonSerializerContext.NugetSearchApiContainerSerializable.g.cs (1)
78private void NugetSearchApiContainerSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiContainerSerializable? value)
_generated\132\NugetSearchApiJsonSerializerContext.NugetSearchApiPackageSerializable.g.cs (1)
238private void NugetSearchApiPackageSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiPackageSerializable? value)
_generated\133\NugetSearchApiJsonSerializerContext.NugetSearchApiPackageSerializableArray.g.cs (1)
47private void NugetSearchApiPackageSerializableArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiPackageSerializable[]? value)
_generated\134\NugetSearchApiJsonSerializerContext.NugetSearchApiVersionSerializable.g.cs (1)
98private void NugetSearchApiVersionSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiVersionSerializable? value)
_generated\135\NugetSearchApiJsonSerializerContext.NugetSearchApiVersionSerializableArray.g.cs (1)
47private void NugetSearchApiVersionSerializableArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiVersionSerializable[]? value)
_generated\138\NugetSearchApiJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\143\SdkVulnerabilityJsonContext.SdkCveInfo.g.cs (1)
104private void SdkCveInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SdkVulnerability.SdkCveInfo? value)
_generated\144\SdkVulnerabilityJsonContext.SdkVulnerabilityInfo.g.cs (1)
180private void SdkVulnerabilityInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SdkVulnerability.SdkVulnerabilityInfo? value)
_generated\145\SdkVulnerabilityJsonContext.IReadOnlyListSdkCveInfo.g.cs (1)
47private void IReadOnlyListSdkCveInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.DotNet.Cli.SdkVulnerability.SdkCveInfo>? value)
_generated\152\SlnfJsonSerializerContext.SlnfRoot.g.cs (1)
78private void SlnfRootSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SlnfFileHelper.SlnfRoot? value)
_generated\153\SlnfJsonSerializerContext.SlnfSolution.g.cs (1)
98private void SlnfSolutionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SlnfFileHelper.SlnfSolution? value)
_generated\154\SlnfJsonSerializerContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
_generated\159\TelemetryDiskLoggerJsonSerializerContext.ActivityModel.g.cs (1)
210private void ActivityModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.ActivityModel? value)
_generated\160\TelemetryDiskLoggerJsonSerializerContext.EventModel.g.cs (1)
122private void EventModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.EventModel? value)
_generated\161\TelemetryDiskLoggerJsonSerializerContext.EventModelArray.g.cs (1)
47private void EventModelArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.EventModel[]? value)
_generated\162\TelemetryDiskLoggerJsonSerializerContext.IdentifiersModel.g.cs (1)
184private void IdentifiersModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.IdentifiersModel? value)
_generated\163\TelemetryDiskLoggerJsonSerializerContext.SourceModel.g.cs (1)
120private void SourceModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.SourceModel? value)
_generated\165\TelemetryDiskLoggerJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\17\RunFileApiJsonSerializerContext.LinePosition.g.cs (1)
98private void LinePositionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.CodeAnalysis.Text.LinePosition value)
_generated\173\LocalToolsCacheJsonSerializerContext.CacheRow.g.cs (1)
180private void CacheRowSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.ToolPackage.LocalToolsResolverCache.CacheRow? value)
_generated\174\LocalToolsCacheJsonSerializerContext.CacheRowArray.g.cs (1)
49private void CacheRowArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.ToolPackage.LocalToolsResolverCache.CacheRow[]? value)
_generated\175\LocalToolsCacheJsonSerializerContext.IEnumerableCacheRow.g.cs (1)
49private void IEnumerableCacheRowSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.DotNet.Cli.ToolPackage.LocalToolsResolverCache.CacheRow>? value)
_generated\18\RunFileApiJsonSerializerContext.LinePositionSpan.g.cs (1)
98private void LinePositionSpanSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.CodeAnalysis.Text.LinePositionSpan value)
_generated\181\SdkVulnerabilityCacheJsonContext.SdkCveCacheSummary.g.cs (1)
98private void SdkCveCacheSummarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SdkCveCacheSummary? value)
_generated\182\SdkVulnerabilityCacheJsonContext.SdkVulnerabilityCacheSummary.g.cs (1)
178private void SdkVulnerabilityCacheSummarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SdkVulnerabilityCacheSummary? value)
_generated\183\SdkVulnerabilityCacheJsonContext.ListSdkCveCacheSummary.g.cs (1)
47private void ListSdkCveCacheSummarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.DotNet.Cli.SdkCveCacheSummary>? value)
_generated\2\CliSchemaJsonSerializerContext.ArityDetails.g.cs (1)
98private void ArityDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.CliSchema.ArityDetails? value)
_generated\20\RunFileApiJsonSerializerContext.GetProject.g.cs (1)
101private void GetProjectSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Run.Api.RunApiInput.GetProject? value)
_generated\21\RunFileApiJsonSerializerContext.GetRunCommand.g.cs (1)
101private void GetRunCommandSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Run.Api.RunApiInput.GetRunCommand? value)
_generated\23\RunFileApiJsonSerializerContext.Error.g.cs (1)
125private void ErrorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Run.Api.RunApiOutput.Error? value)
_generated\24\RunFileApiJsonSerializerContext.Project.g.cs (1)
146private void ProjectSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Run.Api.RunApiOutput.Project? value)
_generated\25\RunFileApiJsonSerializerContext.RunCommand.g.cs (1)
169private void RunCommandSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Run.Api.RunApiOutput.RunCommand? value)
_generated\26\RunFileApiJsonSerializerContext.SimpleDiagnostic.g.cs (1)
102private void SimpleDiagnosticSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.FileBasedPrograms.SimpleDiagnostic? value)
_generated\27\RunFileApiJsonSerializerContext.Position.g.cs (1)
122private void PositionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.FileBasedPrograms.SimpleDiagnostic.Position value)
_generated\28\RunFileApiJsonSerializerContext.IReadOnlyDictionaryStringString.g.cs (1)
47private void IReadOnlyDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyDictionary<string, string>? value)
_generated\29\RunFileApiJsonSerializerContext.ImmutableArraySimpleDiagnostic.g.cs (1)
47private void ImmutableArraySimpleDiagnosticSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableArray<global::Microsoft.DotNet.FileBasedPrograms.SimpleDiagnostic> value)
_generated\3\CliSchemaJsonSerializerContext.CommandDetails.g.cs (1)
178private void CommandDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.CliSchema.CommandDetails? value)
_generated\49\RunFileJsonSerializerContext.RunFileArtifactsMetadata.g.cs (1)
78private void RunFileArtifactsMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Clean.FileBasedAppArtifacts.RunFileArtifactsMetadata? value)
_generated\5\CliSchemaJsonSerializerContext.RootCommandDetails.g.cs (1)
222private void RootCommandDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.CliSchema.RootCommandDetails? value)
_generated\55\SdkCheckJsonSerializerContext.SdkCheckConfig.g.cs (1)
118private void SdkCheckConfigSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Sdk.Check.SdkCheckConfig? value)
_generated\6\CliSchemaJsonSerializerContext.DictionaryStringArgumentDetails.g.cs (1)
47private void DictionaryStringArgumentDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.DotNet.Cli.CliSchema.ArgumentDetails>? value)
_generated\60\ToolListJsonSerializerContext.LocalToolListJsonContract.g.cs (1)
142private void LocalToolListJsonContractSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.LocalToolListJsonContract? value)
_generated\61\ToolListJsonSerializerContext.LocalToolListJsonContractArray.g.cs (1)
47private void LocalToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.LocalToolListJsonContract[]? value)
_generated\62\ToolListJsonSerializerContext.ToolListJsonContract.g.cs (1)
121private void ToolListJsonContractSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.ToolListJsonContract? value)
_generated\63\ToolListJsonSerializerContext.ToolListJsonContractArray.g.cs (1)
47private void ToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.ToolListJsonContract[]? value)
_generated\64\ToolListJsonSerializerContext.VersionedDataContractLocalToolListJsonContractArray.g.cs (1)
99private void VersionedDataContractLocalToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.VersionedDataContract<global::Microsoft.DotNet.Cli.Commands.Tool.List.LocalToolListJsonContract[]>? value)
_generated\65\ToolListJsonSerializerContext.VersionedDataContractToolListJsonContractArray.g.cs (1)
99private void VersionedDataContractToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.VersionedDataContract<global::Microsoft.DotNet.Cli.Commands.Tool.List.ToolListJsonContract[]>? value)
_generated\68\ToolListJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\7\CliSchemaJsonSerializerContext.DictionaryStringCommandDetails.g.cs (1)
47private void DictionaryStringCommandDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.DotNet.Cli.CliSchema.CommandDetails>? value)
_generated\72\GlobalJsonWorkloadSetsJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\78\WorkloadManifestUpdaterJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\8\CliSchemaJsonSerializerContext.DictionaryStringOptionDetails.g.cs (1)
47private void DictionaryStringOptionDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.DotNet.Cli.CliSchema.OptionDetails>? value)
_generated\82\WorkloadInstallJsonSerializerContext.IEnumerableString.g.cs (1)
47private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
_generated\89\InstallStateJsonSerializerContext.InstallStateContents.g.cs (1)
118private void InstallStateContentsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents? value)
_generated\90\InstallStateJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\95\WorkloadListJsonSerializerContext.ListOutput.g.cs (1)
98private void ListOutputSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.List.WorkloadListCommand.ListOutput? value)
_generated\96\WorkloadListJsonSerializerContext.UpdateAvailableEntry.g.cs (1)
138private void UpdateAvailableEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.List.WorkloadListCommand.UpdateAvailableEntry? value)
_generated\97\WorkloadListJsonSerializerContext.UpdateAvailableEntryArray.g.cs (1)
47private void UpdateAvailableEntryArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.List.WorkloadListCommand.UpdateAvailableEntry[]? value)
_generated\99\WorkloadListJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
Commands\Run\VirtualProjectBuildingCommand.cs (1)
534using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true });
Commands\Test\MTP\ArtifactPostProcessingManager.cs (2)
337using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }); 372private static void WriteNullableString(Utf8JsonWriter writer, string propertyName, string? value)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (2)
1438using (var writer = new Utf8JsonWriter(buffer, new JsonWriterOptions { Indented = true })) 1505private static void WriteNullableString(Utf8JsonWriter writer, string propertyName, string? value)
Commands\Workload\WorkloadJsonSerializerContext.cs (1)
24public override void Write(Utf8JsonWriter writer, WorkloadPackId value, JsonSerializerOptions options) =>
NugetSearch\AuthorsConverter.cs (1)
33public override void Write(Utf8JsonWriter writer, NugetSearchApiAuthorsSerializable value,
ToolManifest\ToolManifestEditor.cs (1)
363using (var writer = new Utf8JsonWriter(arrayBufferWriter, new JsonWriterOptions { Indented = true }))
dotnet-aot (49)
_generated\100\NugetSearchApiJsonSerializerContext.NugetSearchApiPackageSerializableArray.g.cs (1)
47private void NugetSearchApiPackageSerializableArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiPackageSerializable[]? value)
_generated\101\NugetSearchApiJsonSerializerContext.NugetSearchApiVersionSerializable.g.cs (1)
98private void NugetSearchApiVersionSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiVersionSerializable? value)
_generated\102\NugetSearchApiJsonSerializerContext.NugetSearchApiVersionSerializableArray.g.cs (1)
47private void NugetSearchApiVersionSerializableArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiVersionSerializable[]? value)
_generated\105\NugetSearchApiJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\109\NugetServiceIndexJsonSerializerContext.NugetServiceIndex.g.cs (1)
78private void NugetServiceIndexSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetServiceIndex? value)
_generated\110\NugetServiceIndexJsonSerializerContext.NugetServiceResource.g.cs (1)
98private void NugetServiceResourceSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetServiceResource? value)
_generated\111\NugetServiceIndexJsonSerializerContext.NugetServiceResourceArray.g.cs (1)
47private void NugetServiceResourceArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetServiceResource[]? value)
_generated\14\CliSchemaJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\18\TelemetryDiskLoggerJsonSerializerContext.ActivityModel.g.cs (1)
210private void ActivityModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.ActivityModel? value)
_generated\19\TelemetryDiskLoggerJsonSerializerContext.EventModel.g.cs (1)
122private void EventModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.EventModel? value)
_generated\20\TelemetryDiskLoggerJsonSerializerContext.EventModelArray.g.cs (1)
47private void EventModelArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.EventModel[]? value)
_generated\21\TelemetryDiskLoggerJsonSerializerContext.IdentifiersModel.g.cs (1)
184private void IdentifiersModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.IdentifiersModel? value)
_generated\22\TelemetryDiskLoggerJsonSerializerContext.SourceModel.g.cs (1)
120private void SourceModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.TelemetryDiskLogger.SourceModel? value)
_generated\24\TelemetryDiskLoggerJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\3\CliSchemaJsonSerializerContext.ArityDetails.g.cs (1)
98private void ArityDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.CliSchema.ArityDetails? value)
_generated\33\WorkloadManifestUpdaterJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\38\SdkVulnerabilityJsonContext.SdkCveInfo.g.cs (1)
104private void SdkCveInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SdkVulnerability.SdkCveInfo? value)
_generated\39\SdkVulnerabilityJsonContext.SdkVulnerabilityInfo.g.cs (1)
180private void SdkVulnerabilityInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SdkVulnerability.SdkVulnerabilityInfo? value)
_generated\4\CliSchemaJsonSerializerContext.CommandDetails.g.cs (1)
178private void CommandDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.CliSchema.CommandDetails? value)
_generated\40\SdkVulnerabilityJsonContext.IReadOnlyListSdkCveInfo.g.cs (1)
47private void IReadOnlyListSdkCveInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.DotNet.Cli.SdkVulnerability.SdkCveInfo>? value)
_generated\59\InstallStateJsonSerializerContext.InstallStateContents.g.cs (1)
118private void InstallStateContentsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents? value)
_generated\6\CliSchemaJsonSerializerContext.RootCommandDetails.g.cs (1)
222private void RootCommandDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.CliSchema.RootCommandDetails? value)
_generated\60\InstallStateJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\65\SdkCheckJsonSerializerContext.SdkCheckConfig.g.cs (1)
118private void SdkCheckConfigSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Sdk.Check.SdkCheckConfig? value)
_generated\7\CliSchemaJsonSerializerContext.DictionaryStringArgumentDetails.g.cs (1)
47private void DictionaryStringArgumentDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.DotNet.Cli.CliSchema.ArgumentDetails>? value)
_generated\70\SlnfJsonSerializerContext.SlnfRoot.g.cs (1)
78private void SlnfRootSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SlnfFileHelper.SlnfRoot? value)
_generated\71\SlnfJsonSerializerContext.SlnfSolution.g.cs (1)
98private void SlnfSolutionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.SlnfFileHelper.SlnfSolution? value)
_generated\72\SlnfJsonSerializerContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
_generated\77\LocalToolsCacheJsonSerializerContext.CacheRow.g.cs (1)
180private void CacheRowSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.ToolPackage.LocalToolsResolverCache.CacheRow? value)
_generated\78\LocalToolsCacheJsonSerializerContext.CacheRowArray.g.cs (1)
49private void CacheRowArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.ToolPackage.LocalToolsResolverCache.CacheRow[]? value)
_generated\79\LocalToolsCacheJsonSerializerContext.IEnumerableCacheRow.g.cs (1)
49private void IEnumerableCacheRowSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.DotNet.Cli.ToolPackage.LocalToolsResolverCache.CacheRow>? value)
_generated\8\CliSchemaJsonSerializerContext.DictionaryStringCommandDetails.g.cs (1)
47private void DictionaryStringCommandDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.DotNet.Cli.CliSchema.CommandDetails>? value)
_generated\84\ToolListJsonSerializerContext.LocalToolListJsonContract.g.cs (1)
142private void LocalToolListJsonContractSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.LocalToolListJsonContract? value)
_generated\85\ToolListJsonSerializerContext.LocalToolListJsonContractArray.g.cs (1)
47private void LocalToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.LocalToolListJsonContract[]? value)
_generated\86\ToolListJsonSerializerContext.ToolListJsonContract.g.cs (1)
121private void ToolListJsonContractSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.ToolListJsonContract? value)
_generated\87\ToolListJsonSerializerContext.ToolListJsonContractArray.g.cs (1)
47private void ToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.ToolListJsonContract[]? value)
_generated\88\ToolListJsonSerializerContext.VersionedDataContractLocalToolListJsonContractArray.g.cs (1)
99private void VersionedDataContractLocalToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.VersionedDataContract<global::Microsoft.DotNet.Cli.Commands.Tool.List.LocalToolListJsonContract[]>? value)
_generated\89\ToolListJsonSerializerContext.VersionedDataContractToolListJsonContractArray.g.cs (1)
99private void VersionedDataContractToolListJsonContractArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Tool.List.VersionedDataContract<global::Microsoft.DotNet.Cli.Commands.Tool.List.ToolListJsonContract[]>? value)
_generated\9\CliSchemaJsonSerializerContext.DictionaryStringOptionDetails.g.cs (1)
47private void DictionaryStringOptionDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.DotNet.Cli.CliSchema.OptionDetails>? value)
_generated\92\ToolListJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\97\NugetSearchApiJsonSerializerContext.NugetSearchApiAuthorsSerializable.g.cs (1)
78private void NugetSearchApiAuthorsSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiAuthorsSerializable? value)
_generated\98\NugetSearchApiJsonSerializerContext.NugetSearchApiContainerSerializable.g.cs (1)
78private void NugetSearchApiContainerSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiContainerSerializable? value)
_generated\99\NugetSearchApiJsonSerializerContext.NugetSearchApiPackageSerializable.g.cs (1)
238private void NugetSearchApiPackageSerializableSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.NugetSearch.NugetSearchApiSerializable.NugetSearchApiPackageSerializable? value)
src\sdk\src\Cli\dotnet\Commands\Test\MTP\ArtifactPostProcessingManager.cs (2)
337using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { Indented = true }); 372private static void WriteNullableString(Utf8JsonWriter writer, string propertyName, string? value)
src\sdk\src\Cli\dotnet\Commands\Test\MTP\Terminal\TerminalTestReporter.cs (2)
1438using (var writer = new Utf8JsonWriter(buffer, new JsonWriterOptions { Indented = true })) 1505private static void WriteNullableString(Utf8JsonWriter writer, string propertyName, string? value)
src\sdk\src\Cli\dotnet\NugetSearch\AuthorsConverter.cs (1)
33public override void Write(Utf8JsonWriter writer, NugetSearchApiAuthorsSerializable value,
src\sdk\src\Cli\dotnet\ToolManifest\ToolManifestEditor.cs (1)
363using (var writer = new Utf8JsonWriter(arrayBufferWriter, new JsonWriterOptions { Indented = true }))
dotnet-dev-certs (3)
_generated\1\DevCertsJsonSerializerContext.CertificateReport.g.cs (1)
238private void CertificateReportSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.DeveloperCertificates.Tools.CertificateReport? value)
_generated\2\DevCertsJsonSerializerContext.ListCertificateReport.g.cs (1)
47private void ListCertificateReportSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.AspNetCore.DeveloperCertificates.Tools.CertificateReport>? value)
_generated\3\DevCertsJsonSerializerContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
dotnet-user-jwts (7)
_generated\1\JwtSerializerContext.Jwt.g.cs (1)
278private void JwtSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.JwtBearer.Tools.Jwt? value)
_generated\2\JwtSerializerContext.JwtArray.g.cs (1)
47private void JwtArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.JwtBearer.Tools.Jwt[]? value)
_generated\3\JwtSerializerContext.SigningKey.g.cs (1)
138private void SigningKeySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.JwtBearer.Tools.SigningKey? value)
_generated\4\JwtSerializerContext.SigningKeyArray.g.cs (1)
47private void SigningKeyArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.JwtBearer.Tools.SigningKey[]? value)
_generated\5\JwtSerializerContext.IDictionaryStringJwt.g.cs (1)
47private void IDictionaryStringJwtSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::Microsoft.AspNetCore.Authentication.JwtBearer.Tools.Jwt>? value)
_generated\6\JwtSerializerContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
_generated\7\JwtSerializerContext.IEnumerableString.g.cs (1)
47private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
dotnet-user-secrets (1)
_generated\0\SecretManagerJsonSerializerContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\ManagedDataDescriptorNode.cs (2)
98using (var writer = new Utf8JsonWriter(stream)) 129private static void WriteType(Utf8JsonWriter writer, EcmaType type)
Microsoft.AspNetCore.Authentication.BearerToken (1)
_generated\1\BearerTokenJsonSerializerContext.AccessTokenResponse.g.cs (1)
146private void AccessTokenResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.BearerToken.AccessTokenResponse? value)
Microsoft.AspNetCore.Authentication.DeviceBoundSessions (7)
_generated\2\DeviceBoundSessionJsonContext.SessionCredential.g.cs (1)
127private void SessionCredentialSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.DeviceBoundSessions.SessionCredential? value)
_generated\3\DeviceBoundSessionJsonContext.SessionInstruction.g.cs (1)
185private void SessionInstructionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.DeviceBoundSessions.SessionInstruction? value)
_generated\4\DeviceBoundSessionJsonContext.SessionScope.g.cs (1)
123private void SessionScopeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.DeviceBoundSessions.SessionScope? value)
_generated\5\DeviceBoundSessionJsonContext.SessionScopeRule.g.cs (1)
127private void SessionScopeRuleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.DeviceBoundSessions.SessionScopeRule? value)
_generated\6\DeviceBoundSessionJsonContext.ListSessionCredential.g.cs (1)
50private void ListSessionCredentialSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.DeviceBoundSessions.SessionCredential>? value)
_generated\7\DeviceBoundSessionJsonContext.ListSessionScopeRule.g.cs (1)
50private void ListSessionScopeRuleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.DeviceBoundSessions.SessionScopeRule>? value)
_generated\8\DeviceBoundSessionJsonContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
Microsoft.AspNetCore.Authentication.Twitter (3)
_generated\1\TwitterJsonContext.TwitterError.g.cs (1)
100private void TwitterErrorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.Twitter.TwitterError? value)
_generated\2\TwitterJsonContext.TwitterErrorResponse.g.cs (1)
80private void TwitterErrorResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Authentication.Twitter.TwitterErrorResponse? value)
_generated\3\TwitterJsonContext.ListTwitterError.g.cs (1)
49private void ListTwitterErrorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.AspNetCore.Authentication.Twitter.TwitterError>? value)
Microsoft.AspNetCore.Components (2)
_generated\1\PersistentServicesRegistryJsonContext.PersistentServiceRegistration.g.cs (1)
104private void PersistentServiceRegistrationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.Infrastructure.PersistentServicesRegistry.PersistentServiceRegistration? value)
_generated\2\PersistentServicesRegistryJsonContext.PersistentServiceRegistrationArray.g.cs (1)
49private void PersistentServiceRegistrationArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.Infrastructure.PersistentServicesRegistry.PersistentServiceRegistration[]? value)
Microsoft.AspNetCore.Components.Endpoints (30)
_generated\1\ImportMapSerializerContext.ImportMapDefinition.g.cs (1)
118private void ImportMapDefinitionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ImportMapDefinition? value)
_generated\10\ResourceCollectionSerializerContext.ResourceAssetProperty.g.cs (1)
102private void ResourceAssetPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ResourceAssetProperty? value)
_generated\11\ResourceCollectionSerializerContext.IReadOnlyListResourceAsset.g.cs (1)
49private void IReadOnlyListResourceAssetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.Components.ResourceAsset>? value)
_generated\12\ResourceCollectionSerializerContext.IReadOnlyListResourceAssetProperty.g.cs (1)
49private void IReadOnlyListResourceAssetPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.Components.ResourceAssetProperty>? value)
_generated\19\BrowserOptionsJsonContext.BrowserOptions.g.cs (1)
141private void BrowserOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.BrowserOptions? value)
_generated\2\ImportMapSerializerContext.IReadOnlyDictionaryStringIReadOnlyDictionaryStringString.g.cs (1)
47private void IReadOnlyDictionaryStringIReadOnlyDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyDictionary<string, global::System.Collections.Generic.IReadOnlyDictionary<string, string>>? value)
_generated\21\BrowserOptionsJsonContext.InteractiveWebAssemblyBrowserOptions.g.cs (1)
119private void InteractiveWebAssemblyBrowserOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.InteractiveWebAssemblyBrowserOptions? value)
_generated\25\BrowserOptionsJsonContext.IDictionaryStringJsonElement.g.cs (1)
47private void IDictionaryStringJsonElementSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::System.Text.Json.JsonElement>? value)
_generated\26\BrowserOptionsJsonContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
_generated\3\ImportMapSerializerContext.IReadOnlyDictionaryStringString.g.cs (1)
47private void IReadOnlyDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyDictionary<string, string>? value)
_generated\36\ServerComponentJsonContext.ComponentEndMarker.g.cs (1)
78private void ComponentEndMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentEndMarker value)
_generated\37\ServerComponentJsonContext.ComponentMarker.g.cs (1)
238private void ComponentMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarker value)
_generated\38\ServerComponentJsonContext.ComponentMarkerKey.g.cs (1)
100private void ComponentMarkerKeySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarkerKey value)
_generated\40\ServerComponentJsonContext.ComponentParameter.g.cs (1)
120private void ComponentParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentParameter value)
_generated\41\ServerComponentJsonContext.ComponentParameterArray.g.cs (1)
47private void ComponentParameterArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentParameter[]? value)
_generated\42\ServerComponentJsonContext.ServerComponent.g.cs (1)
206private void ServerComponentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ServerComponent value)
_generated\43\ServerComponentJsonContext.IEnumerableComponentMarker.g.cs (1)
47private void IEnumerableComponentMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.AspNetCore.Components.ComponentMarker>? value)
_generated\44\ServerComponentJsonContext.IListComponentParameter.g.cs (1)
47private void IListComponentParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.AspNetCore.Components.ComponentParameter>? value)
_generated\56\PrerenderComponentApplicationStoreSerializerContext.DictionaryStringByteArray.g.cs (1)
47private void DictionaryStringByteArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, byte[]>? value)
_generated\58\PrerenderComponentApplicationStoreSerializerContext.g.cs (1)
41private static void WriteByteArrayValue(global::System.Text.Json.Utf8JsonWriter writer, byte[]? value)
_generated\8\ResourceCollectionSerializerContext.ResourceAsset.g.cs (1)
101private void ResourceAssetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ResourceAsset? value)
_generated\9\ResourceCollectionSerializerContext.ResourceAssetCollection.g.cs (1)
49private void ResourceAssetCollectionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ResourceAssetCollection? value)
BrowserConfiguration\BrowserOptionsJsonConverters.cs (2)
16public override void Write(Utf8JsonWriter writer, TimeSpan? value, JsonSerializerOptions options) 37public override void Write(Utf8JsonWriter writer, bool? value, JsonSerializerOptions options)
Builder\ResourceCollectionUrlEndpoint.cs (1)
101var utf8Writer = new Utf8JsonWriter(content);
CacheView\SerializedRenderFragmentHybridCacheSerializer.cs (1)
26using var writer = new Utf8JsonWriter(target);
Forms\ClientValidationDataWriter.cs (1)
14private readonly Utf8JsonWriter _writer;
Serialization\JsonStoredDataSerializer.cs (3)
161using var writer = new Utf8JsonWriter(buffer); 177private void WriteEntry(Utf8JsonWriter writer, object? value, Type? type) 215using var writer = new Utf8JsonWriter(buffer);
Microsoft.AspNetCore.Components.Server (17)
_generated\16\ServerComponentJsonContext.ComponentEndMarker.g.cs (1)
78private void ComponentEndMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentEndMarker value)
_generated\17\ServerComponentJsonContext.ComponentMarker.g.cs (1)
238private void ComponentMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarker value)
_generated\19\ServerComponentJsonContext.ComponentMarkerKey.g.cs (1)
100private void ComponentMarkerKeySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarkerKey value)
_generated\2\JavaScriptInitializersManifestJsonContext.StringArray.g.cs (1)
49private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\21\ServerComponentJsonContext.ComponentParameter.g.cs (1)
120private void ComponentParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentParameter value)
_generated\22\ServerComponentJsonContext.ComponentParameterArray.g.cs (1)
47private void ComponentParameterArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentParameter[]? value)
_generated\23\ServerComponentJsonContext.RootComponentOperation.g.cs (1)
138private void RootComponentOperationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.RootComponentOperation? value)
_generated\24\ServerComponentJsonContext.RootComponentOperationArray.g.cs (1)
47private void RootComponentOperationArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.RootComponentOperation[]? value)
_generated\25\ServerComponentJsonContext.RootComponentOperationBatch.g.cs (1)
101private void RootComponentOperationBatchSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.RootComponentOperationBatch? value)
_generated\27\ServerComponentJsonContext.ServerComponent.g.cs (1)
206private void ServerComponentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ServerComponent value)
_generated\28\ServerComponentJsonContext.IEnumerableComponentMarker.g.cs (1)
47private void IEnumerableComponentMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.AspNetCore.Components.ComponentMarker>? value)
_generated\29\ServerComponentJsonContext.IListComponentParameter.g.cs (1)
47private void IListComponentParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.AspNetCore.Components.ComponentParameter>? value)
_generated\42\PrerenderComponentApplicationStoreSerializerContext.DictionaryStringByteArray.g.cs (1)
47private void DictionaryStringByteArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, byte[]>? value)
_generated\44\PrerenderComponentApplicationStoreSerializerContext.g.cs (1)
41private static void WriteByteArrayValue(global::System.Text.Json.Utf8JsonWriter writer, byte[]? value)
_generated\6\CircuitPersistenceManagerSerializerContext.ComponentMarker.g.cs (1)
240private void ComponentMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarker value)
_generated\7\CircuitPersistenceManagerSerializerContext.ComponentMarkerKey.g.cs (1)
102private void ComponentMarkerKeySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarkerKey value)
src\aspnetcore\src\Components\Shared\src\ElementReferenceJsonConverter.cs (1)
51public override void Write(Utf8JsonWriter writer, ElementReference value, JsonSerializerOptions options)
Microsoft.AspNetCore.Components.Testing (4)
_generated\3\E2EManifestJsonContext.E2EAppEntry.g.cs (1)
186private void E2EAppEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry? value)
_generated\4\E2EManifestJsonContext.E2EManifest.g.cs (1)
80private void E2EManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EManifest? value)
_generated\5\E2EManifestJsonContext.DictionaryStringE2EAppEntry.g.cs (1)
47private void DictionaryStringE2EAppEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.Components.Testing.Infrastructure.E2EAppEntry>? value)
_generated\6\E2EManifestJsonContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
Microsoft.AspNetCore.Components.Web (6)
_generated\3\WebRendererSerializerContext.NavigationOptions.g.cs (1)
138private void NavigationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.NavigationOptions value)
_generated\4\WebRendererSerializerContext.JSComponentParameter.g.cs (1)
100private void JSComponentParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore.JSComponentParameter value)
_generated\5\WebRendererSerializerContext.JSComponentParameterArray.g.cs (1)
47private void JSComponentParameterArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore.JSComponentParameter[]? value)
_generated\6\WebRendererSerializerContext.DictionaryStringJSComponentParameterArray.g.cs (1)
47private void DictionaryStringJSComponentParameterArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore.JSComponentParameter[]>? value)
_generated\7\WebRendererSerializerContext.DictionaryStringListString.g.cs (1)
47private void DictionaryStringListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.List<string>>? value)
_generated\8\WebRendererSerializerContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
Microsoft.AspNetCore.Components.WebAssembly (10)
_generated\10\WebAssemblyJsonSerializerContext.RootComponentOperationArray.g.cs (1)
47private void RootComponentOperationArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.RootComponentOperation[]? value)
_generated\11\WebAssemblyJsonSerializerContext.RootComponentOperationBatch.g.cs (1)
101private void RootComponentOperationBatchSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.RootComponentOperationBatch? value)
_generated\24\PrerenderComponentApplicationStoreSerializerContext.DictionaryStringByteArray.g.cs (1)
47private void DictionaryStringByteArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, byte[]>? value)
_generated\26\PrerenderComponentApplicationStoreSerializerContext.g.cs (1)
41private static void WriteByteArrayValue(global::System.Text.Json.Utf8JsonWriter writer, byte[]? value)
_generated\3\WebAssemblyJsonSerializerContext.ComponentMarker.g.cs (1)
238private void ComponentMarkerSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarker value)
_generated\5\WebAssemblyJsonSerializerContext.ComponentMarkerKey.g.cs (1)
100private void ComponentMarkerKeySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentMarkerKey value)
_generated\7\WebAssemblyJsonSerializerContext.ComponentParameter.g.cs (1)
120private void ComponentParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentParameter value)
_generated\8\WebAssemblyJsonSerializerContext.ComponentParameterArray.g.cs (1)
47private void ComponentParameterArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.ComponentParameter[]? value)
_generated\9\WebAssemblyJsonSerializerContext.RootComponentOperation.g.cs (1)
138private void RootComponentOperationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.RootComponentOperation? value)
src\aspnetcore\src\Components\Shared\src\ElementReferenceJsonConverter.cs (1)
51public override void Write(Utf8JsonWriter writer, ElementReference value, JsonSerializerOptions options)
Microsoft.AspNetCore.Components.WebAssembly.Authentication (3)
_generated\3\InteractiveRequestOptionsSerializerContext.OptionsRecord.g.cs (1)
142private void OptionsRecordSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Components.WebAssembly.Authentication.InteractiveRequestOptions.Converter.OptionsRecord value)
_generated\5\InteractiveRequestOptionsSerializerContext.IEnumerableString.g.cs (1)
47private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
Models\InteractiveRequestOptions.cs (1)
110public override void Write(Utf8JsonWriter writer, InteractiveRequestOptions value, JsonSerializerOptions options)
Microsoft.AspNetCore.Components.WebView (9)
_generated\1\SourceGenerationContext.StaticWebAssetManifest.g.cs (1)
104private void StaticWebAssetManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetManifest? value)
_generated\10\SourceGenerationContext.StringArray.g.cs (1)
49private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\2\SourceGenerationContext.StaticWebAssetMatch.g.cs (1)
102private void StaticWebAssetMatchSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetMatch? value)
_generated\4\SourceGenerationContext.StaticWebAssetPattern.g.cs (1)
122private void StaticWebAssetPatternSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetPattern? value)
_generated\5\SourceGenerationContext.StaticWebAssetPatternArray.g.cs (1)
49private void StaticWebAssetPatternArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetPattern[]? value)
_generated\6\SourceGenerationContext.DictionaryStringStaticWebAssetNode.g.cs (1)
49private void DictionaryStringStaticWebAssetNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetNode>? value)
_generated\7\SourceGenerationContext.IDictionaryStringStaticWebAssetNode.g.cs (1)
49private void IDictionaryStringStaticWebAssetNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetNode>? value)
src\aspnetcore\src\Components\Shared\src\ElementReferenceJsonConverter.cs (1)
51public override void Write(Utf8JsonWriter writer, ElementReference value, JsonSerializerOptions options)
src\aspnetcore\src\Shared\StaticWebAssets\ManifestStaticWebAssetFileProvider.cs (1)
433public override void Write(Utf8JsonWriter writer, Dictionary<string, StaticWebAssetNode> value, JsonSerializerOptions options)
Microsoft.AspNetCore.Diagnostics (3)
_generated\1\ExtensionsExceptionJsonContext.ExceptionExtensionData.g.cs (1)
161private void ExceptionExtensionDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Diagnostics.ExceptionExtensionData? value)
_generated\2\ExtensionsExceptionJsonContext.IHeaderDictionary.g.cs (1)
47private void IHeaderDictionarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Http.IHeaderDictionary? value)
_generated\4\ExtensionsExceptionJsonContext.StringValues.g.cs (1)
47private void StringValuesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.Primitives.StringValues value)
Microsoft.AspNetCore.Grpc.JsonTranscoding (16)
Internal\Json\AnyConverter.cs (2)
64public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options) 104internal static void WriteMessageFields(Utf8JsonWriter writer, IMessage message, GrpcJsonSettings settings, JsonSerializerOptions options)
Internal\Json\BoolConverter.cs (2)
17public override void Write(Utf8JsonWriter writer, bool value, JsonSerializerOptions options) 22public override void WriteAsPropertyName(Utf8JsonWriter writer, bool value, JsonSerializerOptions options)
Internal\Json\ByteStringConverter.cs (1)
19public override void Write(Utf8JsonWriter writer, ByteString value, JsonSerializerOptions options)
Internal\Json\DurationConverter.cs (1)
41public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options)
Internal\Json\EnumConverter.cs (1)
40public override void Write(Utf8JsonWriter writer, TEnum value, JsonSerializerOptions options)
Internal\Json\FieldMaskConverter.cs (1)
40public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options)
Internal\Json\Int64Converter.cs (1)
26public override void Write(Utf8JsonWriter writer, long value, JsonSerializerOptions options)
Internal\Json\ListValueConverter.cs (1)
26public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options)
Internal\Json\NullValueConverter.cs (1)
37public override void Write(Utf8JsonWriter writer, NullValue value, JsonSerializerOptions options)
Internal\Json\StructConverter.cs (1)
26public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options)
Internal\Json\TimestampConverter.cs (1)
40public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options)
Internal\Json\UInt64Converter.cs (1)
27public override void Write(Utf8JsonWriter writer, ulong value, JsonSerializerOptions options)
Internal\Json\ValueConverter.cs (1)
63public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options)
Internal\Json\WrapperConverter.cs (1)
27public override void Write(Utf8JsonWriter writer, TMessage value, JsonSerializerOptions options)
Microsoft.AspNetCore.Hosting (8)
_generated\1\SourceGenerationContext.StaticWebAssetManifest.g.cs (1)
104private void StaticWebAssetManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetManifest? value)
_generated\10\SourceGenerationContext.StringArray.g.cs (1)
49private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\2\SourceGenerationContext.StaticWebAssetMatch.g.cs (1)
102private void StaticWebAssetMatchSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetMatch? value)
_generated\4\SourceGenerationContext.StaticWebAssetPattern.g.cs (1)
122private void StaticWebAssetPatternSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetPattern? value)
_generated\5\SourceGenerationContext.StaticWebAssetPatternArray.g.cs (1)
49private void StaticWebAssetPatternArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetPattern[]? value)
_generated\6\SourceGenerationContext.DictionaryStringStaticWebAssetNode.g.cs (1)
49private void DictionaryStringStaticWebAssetNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetNode>? value)
_generated\7\SourceGenerationContext.IDictionaryStringStaticWebAssetNode.g.cs (1)
49private void IDictionaryStringStaticWebAssetNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.ManifestStaticWebAssetFileProvider.StaticWebAssetNode>? value)
src\aspnetcore\src\Shared\StaticWebAssets\ManifestStaticWebAssetFileProvider.cs (1)
433public override void Write(Utf8JsonWriter writer, Dictionary<string, StaticWebAssetNode> value, JsonSerializerOptions options)
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionDispatcher.cs (2)
229using var jsonWriter = new Utf8JsonWriter((IBufferWriter<byte>)writer); 256using var jsonWriter = new Utf8JsonWriter((IBufferWriter<byte>)writer);
Microsoft.AspNetCore.Http.Connections.Common (3)
NegotiateProtocol.cs (1)
56var writer = reusableWriter.GetJsonWriter();
src\aspnetcore\src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (2)
16private readonly Utf8JsonWriter _writer; 66public Utf8JsonWriter GetJsonWriter()
Microsoft.AspNetCore.Http.Extensions (2)
_generated\10\ProblemDetailsJsonContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\4\ProblemDetailsJsonContext.IDictionaryStringStringArray.g.cs (1)
47private void IDictionaryStringStringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string[]>? value)
Microsoft.AspNetCore.Identity (39)
_generated\10\IdentityEndpointsJsonSerializerContext.RegisterRequest.g.cs (1)
104private void RegisterRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.RegisterRequest? value)
_generated\11\IdentityEndpointsJsonSerializerContext.ResendConfirmationEmailRequest.g.cs (1)
81private void ResendConfirmationEmailRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.ResendConfirmationEmailRequest? value)
_generated\12\IdentityEndpointsJsonSerializerContext.ResetPasswordRequest.g.cs (1)
127private void ResetPasswordRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.ResetPasswordRequest? value)
_generated\13\IdentityEndpointsJsonSerializerContext.TwoFactorRequest.g.cs (1)
158private void TwoFactorRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.TwoFactorRequest? value)
_generated\14\IdentityEndpointsJsonSerializerContext.TwoFactorResponse.g.cs (1)
164private void TwoFactorResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.TwoFactorResponse? value)
_generated\17\IdentityEndpointsJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\23\IdentityJsonSerializerContext.AllAcceptedCredentialsSignalOptions.g.cs (1)
127private void AllAcceptedCredentialsSignalOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.AllAcceptedCredentialsSignalOptions? value)
_generated\24\IdentityJsonSerializerContext.AuthenticatorAssertionResponse.g.cs (1)
147private void AuthenticatorAssertionResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.AuthenticatorAssertionResponse? value)
_generated\25\IdentityJsonSerializerContext.AuthenticatorAttestationResponse.g.cs (1)
124private void AuthenticatorAttestationResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.AuthenticatorAttestationResponse? value)
_generated\26\IdentityJsonSerializerContext.AuthenticatorSelectionCriteria.g.cs (1)
138private void AuthenticatorSelectionCriteriaSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.AuthenticatorSelectionCriteria? value)
_generated\28\IdentityJsonSerializerContext.CollectedClientData.g.cs (1)
187private void CollectedClientDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.CollectedClientData? value)
_generated\30\IdentityJsonSerializerContext.CurrentUserDetailsSignalOptions.g.cs (1)
150private void CurrentUserDetailsSignalOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.CurrentUserDetailsSignalOptions? value)
_generated\31\IdentityJsonSerializerContext.PasskeyAssertionState.g.cs (1)
99private void PasskeyAssertionStateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PasskeyAssertionState? value)
_generated\32\IdentityJsonSerializerContext.PasskeyAttestationState.g.cs (1)
102private void PasskeyAttestationStateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PasskeyAttestationState? value)
_generated\33\IdentityJsonSerializerContext.PasskeyUserEntity.g.cs (1)
127private void PasskeyUserEntitySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PasskeyUserEntity? value)
_generated\34\IdentityJsonSerializerContext.PublicKeyCredentialAuthenticatorAssertionResponse.g.cs (1)
168private void PublicKeyCredentialAuthenticatorAssertionResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredential<global::Microsoft.AspNetCore.Identity.AuthenticatorAssertionResponse>? value)
_generated\35\IdentityJsonSerializerContext.PublicKeyCredentialAuthenticatorAttestationResponse.g.cs (1)
168private void PublicKeyCredentialAuthenticatorAttestationResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredential<global::Microsoft.AspNetCore.Identity.AuthenticatorAttestationResponse>? value)
_generated\36\IdentityJsonSerializerContext.PublicKeyCredentialCreationOptions.g.cs (1)
295private void PublicKeyCredentialCreationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredentialCreationOptions? value)
_generated\37\IdentityJsonSerializerContext.PublicKeyCredentialDescriptor.g.cs (1)
126private void PublicKeyCredentialDescriptorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredentialDescriptor? value)
_generated\38\IdentityJsonSerializerContext.PublicKeyCredentialId.g.cs (1)
81private void PublicKeyCredentialIdSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredentialId? value)
_generated\39\IdentityJsonSerializerContext.PublicKeyCredentialParameters.g.cs (1)
102private void PublicKeyCredentialParametersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredentialParameters value)
_generated\4\IdentityEndpointsJsonSerializerContext.ForgotPasswordRequest.g.cs (1)
81private void ForgotPasswordRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.ForgotPasswordRequest? value)
_generated\40\IdentityJsonSerializerContext.PublicKeyCredentialRequestOptions.g.cs (1)
205private void PublicKeyCredentialRequestOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredentialRequestOptions? value)
_generated\41\IdentityJsonSerializerContext.PublicKeyCredentialRpEntity.g.cs (1)
101private void PublicKeyCredentialRpEntitySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredentialRpEntity? value)
_generated\42\IdentityJsonSerializerContext.PublicKeyCredentialUserEntity.g.cs (1)
127private void PublicKeyCredentialUserEntitySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.PublicKeyCredentialUserEntity? value)
_generated\43\IdentityJsonSerializerContext.TokenBinding.g.cs (1)
101private void TokenBindingSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.TokenBinding? value)
_generated\44\IdentityJsonSerializerContext.UnknownCredentialSignalOptions.g.cs (1)
104private void UnknownCredentialSignalOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.UnknownCredentialSignalOptions? value)
_generated\45\IdentityJsonSerializerContext.IReadOnlyListBufferSource.g.cs (1)
47private void IReadOnlyListBufferSourceSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.Identity.BufferSource>? value)
_generated\46\IdentityJsonSerializerContext.IReadOnlyListPublicKeyCredentialDescriptor.g.cs (1)
47private void IReadOnlyListPublicKeyCredentialDescriptorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.Identity.PublicKeyCredentialDescriptor>? value)
_generated\47\IdentityJsonSerializerContext.IReadOnlyListPublicKeyCredentialParameters.g.cs (1)
47private void IReadOnlyListPublicKeyCredentialParametersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.Identity.PublicKeyCredentialParameters>? value)
_generated\48\IdentityJsonSerializerContext.IReadOnlyListString.g.cs (1)
47private void IReadOnlyListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<string>? value)
_generated\5\IdentityEndpointsJsonSerializerContext.InfoRequest.g.cs (1)
118private void InfoRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.InfoRequest? value)
_generated\53\IdentityJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\6\IdentityEndpointsJsonSerializerContext.InfoResponse.g.cs (1)
102private void InfoResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.InfoResponse? value)
_generated\7\IdentityEndpointsJsonSerializerContext.LoginRequest.g.cs (1)
144private void LoginRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.LoginRequest? value)
_generated\8\IdentityEndpointsJsonSerializerContext.PasskeyEndpointsResponse.g.cs (1)
118private void PasskeyEndpointsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.PasskeyEndpointsResponse? value)
_generated\9\IdentityEndpointsJsonSerializerContext.RefreshRequest.g.cs (1)
81private void RefreshRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.Identity.Data.RefreshRequest? value)
Passkeys\BufferSourceJsonConverter.cs (2)
36public override void Write(Utf8JsonWriter writer, BufferSource value, JsonSerializerOptions options) 75private static void WriteBase64UrlStringValue(Utf8JsonWriter writer, ReadOnlySpan<byte> bytes)
Microsoft.AspNetCore.JsonPatch.SystemTextJson (3)
Converters\JsonConverterForJsonPatchDocumentOfT.cs (1)
53public override void Write(Utf8JsonWriter writer, JsonPatchDocument<T> value, JsonSerializerOptions options)
Converters\JsonPatchDocumentConverter.cs (1)
53public override void Write(Utf8JsonWriter writer, JsonPatchDocument value, JsonSerializerOptions options)
Operations\Operation.cs (1)
49public override void Write(Utf8JsonWriter writer, ValueHolder value, JsonSerializerOptions options)
Microsoft.AspNetCore.Mvc.Testing (1)
_generated\0\CustomJsonSerializerContext.IDictionaryStringString.g.cs (1)
49private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
Infrastructure\DefaultTempDataSerializer.cs (1)
137using var writer = new Utf8JsonWriter(bufferWriter);
Microsoft.AspNetCore.OpenApi (1)
Schemas\OpenApiJsonSchema.cs (1)
51public override void Write(Utf8JsonWriter writer, OpenApiJsonSchema value, JsonSerializerOptions options)
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Http2Limits.cs (1)
199internal void Serialize(Utf8JsonWriter writer)
Http3Limits.cs (1)
57internal void Serialize(Utf8JsonWriter writer)
Internal\Infrastructure\KestrelEventSource.cs (1)
237var writer = new Utf8JsonWriter(bufferWriter);
KestrelServerLimits.cs (1)
259internal void Serialize(Utf8JsonWriter writer)
KestrelServerOptions.cs (1)
346internal void Serialize(Utf8JsonWriter writer)
Microsoft.AspNetCore.SignalR.Common (4)
Protocol\HandshakeProtocol.cs (2)
62var writer = reusableWriter.GetJsonWriter(); 90var writer = reusableWriter.GetJsonWriter();
src\aspnetcore\src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (2)
16private readonly Utf8JsonWriter _writer; 66public Utf8JsonWriter GetJsonWriter()
Microsoft.AspNetCore.SignalR.Protocols.Json (17)
Protocol\JsonHubProtocol.cs (15)
522var writer = reusableWriter.GetJsonWriter(); 579private static void WriteHeaders(Utf8JsonWriter writer, HubInvocationMessage message) 592private void WriteCompletionMessage(CompletionMessage message, Utf8JsonWriter writer) 620private static void WriteCancelInvocationMessage(CancelInvocationMessage message, Utf8JsonWriter writer) 625private void WriteStreamItemMessage(StreamItemMessage message, Utf8JsonWriter writer) 640private void WriteInvocationMessage(InvocationMessage message, Utf8JsonWriter writer) 650private void WriteStreamInvocationMessage(StreamInvocationMessage message, Utf8JsonWriter writer) 660private static void WriteCloseMessage(CloseMessage message, Utf8JsonWriter writer) 673private static void WriteAckMessage(AckMessage message, Utf8JsonWriter writer) 678private static void WriteSequenceMessage(SequenceMessage message, Utf8JsonWriter writer) 683private void WriteArguments(object?[] arguments, Utf8JsonWriter writer) 700private static void WriteStreamIds(string[]? streamIds, Utf8JsonWriter writer) 715private static void WriteInvocationId(HubInvocationMessage message, Utf8JsonWriter writer) 723private static void WriteMessageType(Utf8JsonWriter writer, int type) 917private void SerializeObject(Utf8JsonWriter writer, object? value) => JsonSerializer.Serialize(writer, value, _payloadSerializerOptions);
src\aspnetcore\src\SignalR\common\Shared\ReusableUtf8JsonWriter.cs (2)
16private readonly Utf8JsonWriter _writer; 66public Utf8JsonWriter GetJsonWriter()
Microsoft.AspNetCore.StaticAssets (9)
_generated\1\StaticAssetsManifestJsonContext.StaticAssetDescriptor.g.cs (1)
190private void StaticAssetDescriptorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticAssets.StaticAssetDescriptor? value)
_generated\2\StaticAssetsManifestJsonContext.StaticAssetProperty.g.cs (1)
100private void StaticAssetPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticAssets.StaticAssetProperty? value)
_generated\3\StaticAssetsManifestJsonContext.StaticAssetResponseHeader.g.cs (1)
100private void StaticAssetResponseHeaderSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticAssets.StaticAssetResponseHeader? value)
_generated\4\StaticAssetsManifestJsonContext.StaticAssetSelector.g.cs (1)
121private void StaticAssetSelectorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticAssets.StaticAssetSelector? value)
_generated\5\StaticAssetsManifestJsonContext.StaticAssetsManifest.g.cs (1)
122private void StaticAssetsManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticAssets.StaticAssetsManifest? value)
_generated\6\StaticAssetsManifestJsonContext.IReadOnlyListStaticAssetProperty.g.cs (1)
47private void IReadOnlyListStaticAssetPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.StaticAssets.StaticAssetProperty>? value)
_generated\7\StaticAssetsManifestJsonContext.IReadOnlyListStaticAssetResponseHeader.g.cs (1)
47private void IReadOnlyListStaticAssetResponseHeaderSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.StaticAssets.StaticAssetResponseHeader>? value)
_generated\8\StaticAssetsManifestJsonContext.IReadOnlyListStaticAssetSelector.g.cs (1)
47private void IReadOnlyListStaticAssetSelectorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.AspNetCore.StaticAssets.StaticAssetSelector>? value)
_generated\9\StaticAssetsManifestJsonContext.ListStaticAssetDescriptor.g.cs (1)
47private void ListStaticAssetDescriptorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.AspNetCore.StaticAssets.StaticAssetDescriptor>? value)
Microsoft.Build (2)
_generated\2\TasksDetailsJsonContext.TaskDetailInfo.g.cs (1)
220private void TaskDetailInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Build.Framework.Telemetry.TelemetryDataUtils.TaskDetailInfo? value)
_generated\3\TasksDetailsJsonContext.ListTaskDetailInfo.g.cs (1)
47private void ListTaskDetailInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.Build.Framework.Telemetry.TelemetryDataUtils.TaskDetailInfo>? value)
Microsoft.DotNet.Cli.Definitions (2)
_generated\0\GlobalJsonSerializerContext.GlobalJsonModel.g.cs (1)
82private void GlobalJsonModelSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Test.TestCommandDefinition.GlobalJsonModel? value)
_generated\1\GlobalJsonSerializerContext.GlobalJsonTestNode.g.cs (1)
82private void GlobalJsonTestNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Test.TestCommandDefinition.GlobalJsonTestNode? value)
Microsoft.DotNet.Cli.Telemetry (18)
_generated\1\TelemetryJsonContext.ExceptionData.g.cs (1)
142private void ExceptionDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.ExceptionData? value)
_generated\10\TelemetryJsonContext.ExceptionEnvelope.g.cs (1)
168private void ExceptionEnvelopeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryEnvelope<global::Microsoft.DotNet.Cli.Telemetry.Implementation.ExceptionData>? value)
_generated\11\TelemetryJsonContext.MessageEnvelope.g.cs (1)
168private void MessageEnvelopeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryEnvelope<global::Microsoft.DotNet.Cli.Telemetry.Implementation.MessageData>? value)
_generated\12\TelemetryJsonContext.DependencyEnvelope.g.cs (1)
168private void DependencyEnvelopeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryEnvelope<global::Microsoft.DotNet.Cli.Telemetry.Implementation.RemoteDependencyData>? value)
_generated\13\TelemetryJsonContext.RequestEnvelope.g.cs (1)
168private void RequestEnvelopeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryEnvelope<global::Microsoft.DotNet.Cli.Telemetry.Implementation.RequestData>? value)
_generated\14\TelemetryJsonContext.TrackResponse.g.cs (1)
118private void TrackResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TrackResponse? value)
_generated\15\TelemetryJsonContext.TrackResponseError.g.cs (1)
118private void TrackResponseErrorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TrackResponseError? value)
_generated\16\TelemetryJsonContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\17\TelemetryJsonContext.ListExceptionDetails.g.cs (1)
47private void ListExceptionDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.DotNet.Cli.Telemetry.Implementation.ExceptionDetails>? value)
_generated\18\TelemetryJsonContext.ListTrackResponseError.g.cs (1)
47private void ListTrackResponseErrorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.DotNet.Cli.Telemetry.Implementation.TrackResponseError>? value)
_generated\2\TelemetryJsonContext.ExceptionDetails.g.cs (1)
138private void ExceptionDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.ExceptionDetails? value)
_generated\3\TelemetryJsonContext.MessageData.g.cs (1)
138private void MessageDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.MessageData? value)
_generated\4\TelemetryJsonContext.RemoteDependencyData.g.cs (1)
202private void RemoteDependencyDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.RemoteDependencyData? value)
_generated\5\TelemetryJsonContext.RequestData.g.cs (1)
204private void RequestDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.RequestData? value)
_generated\6\TelemetryJsonContext.TelemetryDataExceptionData.g.cs (1)
100private void TelemetryDataExceptionDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryData<global::Microsoft.DotNet.Cli.Telemetry.Implementation.ExceptionData>? value)
_generated\7\TelemetryJsonContext.TelemetryDataMessageData.g.cs (1)
100private void TelemetryDataMessageDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryData<global::Microsoft.DotNet.Cli.Telemetry.Implementation.MessageData>? value)
_generated\8\TelemetryJsonContext.TelemetryDataRemoteDependencyData.g.cs (1)
100private void TelemetryDataRemoteDependencyDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryData<global::Microsoft.DotNet.Cli.Telemetry.Implementation.RemoteDependencyData>? value)
_generated\9\TelemetryJsonContext.TelemetryDataRequestData.g.cs (1)
100private void TelemetryDataRequestDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Telemetry.Implementation.TelemetryData<global::Microsoft.DotNet.Cli.Telemetry.Implementation.RequestData>? value)
Microsoft.DotNet.HotReload.Utils.Generator.Data (1)
Script\Json\ScriptCapabilitiesConverter.cs (1)
31public override void Write(Utf8JsonWriter writer, string value, JsonSerializerOptions options) => writer.WriteStringValue(value);
Microsoft.DotNet.HotReload.WebAssembly.Browser (6)
_generated\2\WebAssemblyHotReloadJsonSerializerContext.Delta.g.cs (1)
168private void DeltaSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.HotReload.WebAssembly.Browser.WebAssemblyHotReload.Delta value)
_generated\3\WebAssemblyHotReloadJsonSerializerContext.DeltaArray.g.cs (1)
47private void DeltaArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.HotReload.WebAssembly.Browser.WebAssemblyHotReload.Delta[]? value)
_generated\4\WebAssemblyHotReloadJsonSerializerContext.LogEntry.g.cs (1)
100private void LogEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.HotReload.WebAssembly.Browser.WebAssemblyHotReload.LogEntry value)
_generated\5\WebAssemblyHotReloadJsonSerializerContext.LogEntryArray.g.cs (1)
47private void LogEntryArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.HotReload.WebAssembly.Browser.WebAssemblyHotReload.LogEntry[]? value)
_generated\7\WebAssemblyHotReloadJsonSerializerContext.Int32Array.g.cs (1)
47private void Int32ArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, int[]? value)
_generated\9\WebAssemblyHotReloadJsonSerializerContext.g.cs (1)
41private static void WriteByteArrayValue(global::System.Text.Json.Utf8JsonWriter writer, byte[]? value)
Microsoft.DotNet.ProjectTools (3)
_generated\1\LaunchProfileJsonSerializerContext.ExecutableLaunchProfile.g.cs (1)
183private void ExecutableLaunchProfileSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.ProjectTools.ExecutableLaunchProfile? value)
_generated\2\LaunchProfileJsonSerializerContext.ProjectLaunchProfile.g.cs (1)
200private void ProjectLaunchProfileSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.ProjectTools.ProjectLaunchProfile? value)
_generated\3\LaunchProfileJsonSerializerContext.ImmutableDictionaryStringString.g.cs (1)
47private void ImmutableDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableDictionary<string, string>? value)
Microsoft.DotNet.TemplateLocator (5)
_generated\0\WorkloadSetJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\1\WorkloadSetJsonSerializerContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
_generated\8\InstallStateJsonSerializerContext.InstallStateContents.g.cs (1)
118private void InstallStateContentsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents? value)
_generated\9\InstallStateJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadPackId.cs (1)
54public override void Write(Utf8JsonWriter writer, WorkloadPackId value, JsonSerializerOptions options) => writer.WriteStringValue(value.ToString());
Microsoft.Extensions.AI (23)
Generated\361d1da7f942c932\OtelContext.IEnumerableRealtimeOtelMessage.g.cs (1)
45private void IEnumerableRealtimeOtelMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.Extensions.AI.RealtimeOtelMessage>? value)
Generated\361d1da7f942c932\OtelContext.OtelCodeInterpreterToolCall.g.cs (1)
98private void OtelCodeInterpreterToolCallSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelCodeInterpreterToolCall? value)
Generated\361d1da7f942c932\OtelContext.OtelImageGenerationToolCall.g.cs (1)
78private void OtelImageGenerationToolCallSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelImageGenerationToolCall? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallPartOtelCodeInterpreterToolCall.g.cs (1)
138private void OtelServerToolCallPartOtelCodeInterpreterToolCallSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallPart<global::Microsoft.Extensions.AI.OtelCodeInterpreterToolCall>? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallPartOtelImageGenerationToolCall.g.cs (1)
138private void OtelServerToolCallPartOtelImageGenerationToolCallSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallPart<global::Microsoft.Extensions.AI.OtelImageGenerationToolCall>? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallPartOtelMcpApprovalRequest.g.cs (1)
138private void OtelServerToolCallPartOtelMcpApprovalRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallPart<global::Microsoft.Extensions.AI.OtelMcpApprovalRequest>? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallPartOtelMcpToolCall.g.cs (1)
138private void OtelServerToolCallPartOtelMcpToolCallSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallPart<global::Microsoft.Extensions.AI.OtelMcpToolCall>? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallResponsePartOtelCodeInterpreterToolCallResponse.g.cs (1)
118private void OtelServerToolCallResponsePartOtelCodeInterpreterToolCallResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallResponsePart<global::Microsoft.Extensions.AI.OtelCodeInterpreterToolCallResponse>? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallResponsePartOtelImageGenerationToolCallResponse.g.cs (1)
118private void OtelServerToolCallResponsePartOtelImageGenerationToolCallResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallResponsePart<global::Microsoft.Extensions.AI.OtelImageGenerationToolCallResponse>? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallResponsePartOtelMcpApprovalResponse.g.cs (1)
118private void OtelServerToolCallResponsePartOtelMcpApprovalResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallResponsePart<global::Microsoft.Extensions.AI.OtelMcpApprovalResponse>? value)
Generated\361d1da7f942c932\OtelContext.OtelServerToolCallResponsePartOtelMcpToolCallResponse.g.cs (1)
118private void OtelServerToolCallResponsePartOtelMcpToolCallResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelServerToolCallResponsePart<global::Microsoft.Extensions.AI.OtelMcpToolCallResponse>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.IEnumerableOtelFunction.g.cs (1)
45private void IEnumerableOtelFunctionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.Extensions.AI.OtelFunction>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelBlobPart.g.cs (1)
138private void OtelBlobPartSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelBlobPart? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelFilePart.g.cs (1)
138private void OtelFilePartSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelFilePart? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelFunction.g.cs (1)
138private void OtelFunctionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelFunction? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelMcpApprovalRequest.g.cs (1)
118private void OtelMcpApprovalRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelMcpApprovalRequest? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelMcpApprovalResponse.g.cs (1)
98private void OtelMcpApprovalResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelMcpApprovalResponse? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelMcpToolCall.g.cs (1)
118private void OtelMcpToolCallSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelMcpToolCall? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelMessage.g.cs (1)
138private void OtelMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelMessage? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelToolCallRequestPart.g.cs (1)
138private void OtelToolCallRequestPartSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelToolCallRequestPart? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.OtelUriPart.g.cs (1)
138private void OtelUriPartSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OtelUriPart? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.RealtimeOtelMessage.g.cs (1)
98private void RealtimeOtelMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.RealtimeOtelMessage? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OtelContext.RealtimeOtelToolCallPart.g.cs (1)
138private void RealtimeOtelToolCallPartSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.RealtimeOtelToolCallPart? value)
Microsoft.Extensions.AI.Abstractions (50)
ChatCompletion\ChatFinishReason.cs (1)
86public override void Write(Utf8JsonWriter writer, ChatFinishReason value, JsonSerializerOptions options) =>
ChatCompletion\ChatRole.cs (1)
99public override void Write(Utf8JsonWriter writer, ChatRole value, JsonSerializerOptions options) =>
Embeddings\BinaryEmbedding.cs (1)
90public override void Write(Utf8JsonWriter writer, BitArray value, JsonSerializerOptions options)
Generated\361d1da7f942c932\JsonContext.AdditionalPropertiesDictionaryInt64.g.cs (1)
47private void AdditionalPropertiesDictionaryInt64SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AdditionalPropertiesDictionary<long>? value)
Generated\361d1da7f942c932\JsonContext.EmbeddingGenerationOptions.g.cs (1)
138private void EmbeddingGenerationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.EmbeddingGenerationOptions? value)
Generated\361d1da7f942c932\JsonContext.EmbeddingGeneratorMetadata.g.cs (1)
138private void EmbeddingGeneratorMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.EmbeddingGeneratorMetadata? value)
Generated\361d1da7f942c932\JsonContext.IReadOnlyListChatResponseUpdate.g.cs (1)
47private void IReadOnlyListChatResponseUpdateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.Extensions.AI.ChatResponseUpdate>? value)
Generated\361d1da7f942c932\JsonContext.IReadOnlyListSpeechToTextResponseUpdate.g.cs (1)
47private void IReadOnlyListSpeechToTextResponseUpdateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.Extensions.AI.SpeechToTextResponseUpdate>? value)
Generated\361d1da7f942c932\JsonContext.IReadOnlyListTextToSpeechResponseUpdate.g.cs (1)
47private void IReadOnlyListTextToSpeechResponseUpdateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.Extensions.AI.TextToSpeechResponseUpdate>? value)
Generated\361d1da7f942c932\JsonContext.SpeechToTextClientMetadata.g.cs (1)
118private void SpeechToTextClientMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.SpeechToTextClientMetadata? value)
Generated\361d1da7f942c932\JsonContext.TextToSpeechClientMetadata.g.cs (1)
118private void TextToSpeechClientMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextToSpeechClientMetadata? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.AutoChatToolMode.g.cs (1)
58private void AutoChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AutoChatToolMode? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatClientMetadata.g.cs (1)
118private void ChatClientMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatClientMetadata? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatMessageArray.g.cs (1)
47private void ChatMessageArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatMessage[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatOptions.g.cs (1)
458private void ChatOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatResponseFormatJson.g.cs (1)
118private void ChatResponseFormatJsonSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatJson? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatResponseFormatText.g.cs (1)
58private void ChatResponseFormatTextSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatText? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EmbeddingByte.g.cs (1)
158private void EmbeddingByteSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<byte>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EmbeddingDouble.g.cs (1)
158private void EmbeddingDoubleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<double>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EmbeddingInt32.g.cs (1)
158private void EmbeddingInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<int>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EmbeddingSByte.g.cs (1)
158private void EmbeddingSByteSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<sbyte>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EmbeddingSingle.g.cs (1)
158private void EmbeddingSingleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<float>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.HostedFileClientMetadata.g.cs (1)
98private void HostedFileClientMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.HostedFileClientMetadata? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.HostedFileClientOptions.g.cs (1)
158private void HostedFileClientOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.HostedFileClientOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IEnumerableAIContent.g.cs (1)
47private void IEnumerableAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IEnumerableChatMessage.g.cs (1)
47private void IEnumerableChatMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.Extensions.AI.ChatMessage>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IEnumerableString.g.cs (1)
47private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAIAnnotation.g.cs (1)
47private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAIContent.g.cs (1)
47private void IListAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAnnotatedRegion.g.cs (1)
47private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListChatMessage.g.cs (1)
47private void IListChatMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.ChatMessage>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListString.g.cs (1)
47private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ImageGenerationOptions.g.cs (1)
218private void ImageGenerationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ImageGenerationOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.NoneChatToolMode.g.cs (1)
58private void NoneChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.NoneChatToolMode? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ReadOnlyMemoryDouble.g.cs (1)
47private void ReadOnlyMemoryDoubleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<double> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ReadOnlyMemoryInt32.g.cs (1)
47private void ReadOnlyMemoryInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<int> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ReadOnlyMemorySByte.g.cs (1)
47private void ReadOnlyMemorySByteSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<sbyte> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ReadOnlyMemorySingle.g.cs (1)
47private void ReadOnlyMemorySingleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<float> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ReasoningOptions.g.cs (1)
98private void ReasoningOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ReasoningOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.RequiredChatToolMode.g.cs (1)
78private void RequiredChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.RequiredChatToolMode? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.Size.g.cs (1)
118private void SizeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Drawing.Size value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.SpeechToTextOptions.g.cs (1)
178private void SpeechToTextOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.SpeechToTextOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.TextSpanAnnotatedRegion.g.cs (1)
98private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.TextToSpeechOptions.g.cs (1)
238private void TextToSpeechOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextToSpeechOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.UsageDetails.g.cs (1)
338private void UsageDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.UsageDetails? value)
Realtime\RealtimeServerMessageType.cs (1)
160public override void Write(Utf8JsonWriter writer, RealtimeServerMessageType value, JsonSerializerOptions options) =>
Realtime\RealtimeSessionKind.cs (1)
97public override void Write(Utf8JsonWriter writer, RealtimeSessionKind value, JsonSerializerOptions options) =>
ResponseContinuationToken.cs (1)
57public override void Write(Utf8JsonWriter writer, ResponseContinuationToken value, JsonSerializerOptions options)
SpeechToText\SpeechToTextResponseUpdateKind.cs (1)
102public override void Write(Utf8JsonWriter writer, SpeechToTextResponseUpdateKind value, JsonSerializerOptions options)
TextToSpeech\TextToSpeechResponseUpdateKind.cs (1)
102public override void Write(Utf8JsonWriter writer, TextToSpeechResponseUpdateKind value, JsonSerializerOptions options)
Microsoft.Extensions.AI.Abstractions.Tests (105)
Generated\361d1da7f942c932\JsonContext.ClassWithNullableMaxLengthProperty.g.cs (1)
78private void ClassWithNullableMaxLengthPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AIJsonUtilitiesTests.ClassWithNullableMaxLengthProperty? value)
Generated\361d1da7f942c932\JsonContext.CreateJsonSchema_IncorporatesTypesAndAnnotations_Type.g.cs (1)
478private void CreateJsonSchema_IncorporatesTypesAndAnnotations_TypeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AIJsonUtilitiesTests.CreateJsonSchema_IncorporatesTypesAndAnnotations_Type? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.AdditionalPropertiesDictionaryInt64.g.cs (1)
45private void AdditionalPropertiesDictionaryInt64SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AdditionalPropertiesDictionary<long>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.AutoChatToolMode.g.cs (1)
56private void AutoChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AutoChatToolMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ChatResponseFormatJson.g.cs (1)
116private void ChatResponseFormatJsonSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatJson? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ChatResponseFormatText.g.cs (1)
56private void ChatResponseFormatTextSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatText? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DayOfWeekArray.g.cs (1)
45private void DayOfWeekArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.DayOfWeek[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DictionaryStringJsonDocument.g.cs (1)
45private void DictionaryStringJsonDocumentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Text.Json.JsonDocument>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DictionaryStringJsonNode.g.cs (1)
45private void DictionaryStringJsonNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Text.Json.Nodes.JsonNode>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DictionaryStringString.g.cs (1)
45private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.EmbeddingByte.g.cs (1)
156private void EmbeddingByteSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<byte>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.EmbeddingDouble.g.cs (1)
156private void EmbeddingDoubleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<double>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.EmbeddingGenerationOptions.g.cs (1)
136private void EmbeddingGenerationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.EmbeddingGenerationOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.EmbeddingSByte.g.cs (1)
156private void EmbeddingSByteSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<sbyte>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.EmbeddingSingle.g.cs (1)
156private void EmbeddingSingleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<float>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.FunctionCallContentArray.g.cs (1)
45private void FunctionCallContentArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.FunctionCallContent[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.FunctionResultContentArray.g.cs (1)
45private void FunctionResultContentArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.FunctionResultContent[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.HostedFileClientOptions.g.cs (1)
156private void HostedFileClientOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.HostedFileClientOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.HostedMcpServerToolAlwaysRequireApprovalMode.g.cs (1)
56private void HostedMcpServerToolAlwaysRequireApprovalModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.HostedMcpServerToolAlwaysRequireApprovalMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.HostedMcpServerToolNeverRequireApprovalMode.g.cs (1)
56private void HostedMcpServerToolNeverRequireApprovalModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.HostedMcpServerToolNeverRequireApprovalMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.HostedMcpServerToolRequireSpecificApprovalMode.g.cs (1)
96private void HostedMcpServerToolRequireSpecificApprovalModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.HostedMcpServerToolRequireSpecificApprovalMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListAIAnnotation.g.cs (1)
45private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListAIContent.g.cs (1)
45private void IListAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListAnnotatedRegion.g.cs (1)
45private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListChatMessage.g.cs (1)
45private void IListChatMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.ChatMessage>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ImageGenerationOptions.g.cs (1)
216private void ImageGenerationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ImageGenerationOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.InputRequestContentArray.g.cs (1)
45private void InputRequestContentArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.InputRequestContent[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.InputResponseContentArray.g.cs (1)
45private void InputResponseContentArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.InputResponseContent[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.NoneChatToolMode.g.cs (1)
56private void NoneChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.NoneChatToolMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ReadOnlyDictionaryStringString.g.cs (1)
45private void ReadOnlyDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.ObjectModel.ReadOnlyDictionary<string, string>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ReadOnlyMemoryDouble.g.cs (1)
45private void ReadOnlyMemoryDoubleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<double> value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ReadOnlyMemorySByte.g.cs (1)
45private void ReadOnlyMemorySByteSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<sbyte> value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ReadOnlyMemorySingle.g.cs (1)
45private void ReadOnlyMemorySingleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<float> value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ReasoningOptions.g.cs (1)
96private void ReasoningOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ReasoningOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.RequiredChatToolMode.g.cs (1)
76private void RequiredChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.RequiredChatToolMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.SpeechToTextOptions.g.cs (1)
176private void SpeechToTextOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.SpeechToTextOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.TextSpanAnnotatedRegion.g.cs (1)
96private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.TextToSpeechOptions.g.cs (1)
236private void TextToSpeechOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextToSpeechOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ToolCallContentArray.g.cs (1)
45private void ToolCallContentArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ToolCallContent[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ToolResultContentArray.g.cs (1)
45private void ToolResultContentArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ToolResultContent[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.TypeWithDisplayName.g.cs (1)
76private void TypeWithDisplayNameSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatTests.TypeWithDisplayName? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.UsageDetails.g.cs (1)
256private void UsageDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.UsageDetails? value)
Generated\361d1da7f942c932\TestTypesContext.ClassWithComponentModelAttributes.g.cs (1)
99private void ClassWithComponentModelAttributesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.ClassWithComponentModelAttributes? value)
Generated\361d1da7f942c932\TestTypesContext.ClassWithPropertiesUsingCustomConverters.g.cs (1)
99private void ClassWithPropertiesUsingCustomConvertersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.ClassWithPropertiesUsingCustomConverters? value)
Generated\361d1da7f942c932\TestTypesContext.DerivedPocoIntDiscriminator.g.cs (1)
98private void DerivedPocoIntDiscriminatorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedPocoIntDiscriminator? value)
Generated\361d1da7f942c932\TestTypesContext.DerivedPocoNoDiscriminator.g.cs (1)
98private void DerivedPocoNoDiscriminatorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedPocoNoDiscriminator? value)
Generated\361d1da7f942c932\TestTypesContext.DerivedPocoStringDiscriminator.g.cs (1)
98private void DerivedPocoStringDiscriminatorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedPocoStringDiscriminator? value)
Generated\361d1da7f942c932\TestTypesContext.DictionaryStringInt32.g.cs (1)
47private void DictionaryStringInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, int>? value)
Generated\361d1da7f942c932\TestTypesContext.DictionaryStringSimplePoco.g.cs (1)
47private void DictionaryStringSimplePocoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimplePoco>? value)
Generated\361d1da7f942c932\TestTypesContext.GenericPocoWithNullableConstructorParameterString.g.cs (1)
79private void GenericPocoWithNullableConstructorParameterStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.GenericPocoWithNullableConstructorParameter<string>? value)
Generated\361d1da7f942c932\TestTypesContext.ImmutableQueueBoolean.g.cs (1)
47private void ImmutableQueueBooleanSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableQueue<bool>? value)
Generated\361d1da7f942c932\TestTypesContext.PocoCombiningPolymorphicTypeAndDerivedTypes.g.cs (1)
124private void PocoCombiningPolymorphicTypeAndDerivedTypesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoCombiningPolymorphicTypeAndDerivedTypes? value)
Generated\361d1da7f942c932\TestTypesContext.PocoDisallowingUnmappedMembers.g.cs (1)
100private void PocoDisallowingUnmappedMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoDisallowingUnmappedMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithCustomNumberHandling.g.cs (1)
78private void PocoWithCustomNumberHandlingSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithCustomNumberHandling? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithIgnoredMembers.g.cs (1)
98private void PocoWithIgnoredMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithIgnoredMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNonRecursiveDuplicateOccurrences.g.cs (1)
138private void PocoWithNonRecursiveDuplicateOccurrencesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNonRecursiveDuplicateOccurrences? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableAnnotationAttributes.g.cs (1)
164private void PocoWithNullableAnnotationAttributesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableAnnotationAttributes? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableAnnotationAttributesOnConstructorParams.g.cs (1)
100private void PocoWithNullableAnnotationAttributesOnConstructorParamsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableAnnotationAttributesOnConstructorParams? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableConstructorParameter.g.cs (1)
79private void PocoWithNullableConstructorParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableConstructorParameter? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableStructFollowedByStruct.g.cs (1)
98private void PocoWithNullableStructFollowedByStructSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableStructFollowedByStruct? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithOptionalConstructorParams.g.cs (1)
259private void PocoWithOptionalConstructorParamsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithOptionalConstructorParams? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithRecursiveMembers.g.cs (1)
98private void PocoWithRecursiveMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithRecursiveMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithRequiredMembers.g.cs (1)
125private void PocoWithRequiredMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithRequiredMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithStructFollowedByNullableStruct.g.cs (1)
98private void PocoWithStructFollowedByNullableStructSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithStructFollowedByNullableStruct? value)
Generated\361d1da7f942c932\TestTypesContext.RecordWithOptionalParameters.g.cs (1)
262private void RecordWithOptionalParametersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.RecordWithOptionalParameters? value)
Generated\361d1da7f942c932\TestTypesContext.StructDictionaryStringInt32.g.cs (1)
47private void StructDictionaryStringInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.StructDictionary<string, int> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAIAnnotation.g.cs (1)
47private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAnnotatedRegion.g.cs (1)
47private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.Int32Array.g.cs (1)
47private void Int32ArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, int[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.MyPoco.g.cs (1)
118private void MyPocoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AIJsonUtilitiesTests.MyPoco? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.TextSpanAnnotatedRegion.g.cs (1)
98private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.TypeWithRequiredMembers.g.cs (1)
138private void TypeWithRequiredMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AIJsonUtilitiesTests.TypeWithRequiredMembers? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestJsonSerializerContext.ChatOptions.g.cs (1)
456private void ChatOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestJsonSerializerContext.IListString.g.cs (1)
45private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestJsonSerializerContext.Int32Array.g.cs (1)
45private void Int32ArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, int[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestJsonSerializerContext.Size.g.cs (1)
116private void SizeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Drawing.Size value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestJsonSerializerContext.SomeType.g.cs (1)
96private void SomeTypeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatTests.SomeType? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.Derived.g.cs (1)
58private void DerivedSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.NonAbstractClassWithSingleDerivedType.Derived? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.DerivedCollection.g.cs (1)
47private void DerivedCollectionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedCollection? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.DerivedDictionary.g.cs (1)
47private void DerivedDictionarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedDictionary? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.HashSetString.g.cs (1)
47private void HashSetStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.HashSet<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ImmutableArrayInt32.g.cs (1)
47private void ImmutableArrayInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableArray<int> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ImmutableListString.g.cs (1)
47private void ImmutableListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableList<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.Int32Array.g.cs (1)
47private void Int32ArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, int[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ListBoolean.g.cs (1)
47private void ListBooleanSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<bool>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ListSimpleRecord.g.cs (1)
47private void ListSimpleRecordSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecord>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.PocoWithCustomNaming.g.cs (1)
98private void PocoWithCustomNamingSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithCustomNaming? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.PocoWithDescription.g.cs (1)
78private void PocoWithDescriptionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithDescription? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.QueueDouble.g.cs (1)
47private void QueueDoubleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Queue<double>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimplePoco.g.cs (1)
160private void SimplePocoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimplePoco? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimpleRecord.g.cs (1)
140private void SimpleRecordSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecord? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimpleRecordArray.g.cs (1)
47private void SimpleRecordArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecord[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimpleRecordStruct.g.cs (1)
140private void SimpleRecordStructSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecordStruct value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.StackChar.g.cs (1)
47private void StackCharSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Stack<char>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XAttribute.g.cs (1)
258private void XAttributeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XAttribute? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XDeclaration.g.cs (1)
118private void XDeclarationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XDeclaration? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XDocument.g.cs (1)
298private void XDocumentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XDocument? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XDocumentType.g.cs (1)
278private void XDocumentTypeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XDocumentType? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XElement.g.cs (1)
378private void XElementSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XElement? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XName.g.cs (1)
118private void XNameSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XName? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XNamespace.g.cs (1)
78private void XNamespaceSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XNamespace? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XNode.g.cs (1)
178private void XNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XNode? value)
parent\parent\Shared\JsonSchemaExporter\TestTypes.cs (3)
975public override void Write(Utf8JsonWriter writer, PocoWithCustomConverter value, JsonSerializerOptions options) => 990public override void Write(Utf8JsonWriter writer, int value, JsonSerializerOptions options) 1205public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
Microsoft.Extensions.AI.Evaluation.Quality (3)
Generated\361d1da7f942c932\SerializerContext.IntentResolutionRating.g.cs (1)
229private void IntentResolutionRatingSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Quality.IntentResolutionRating? value)
Generated\361d1da7f942c932\SerializerContext.RelevanceTruthAndCompletenessRating.g.cs (1)
277private void RelevanceTruthAndCompletenessRatingSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Quality.RelevanceTruthAndCompletenessRating? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\SerializerContext.StringArray.g.cs (1)
45private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
Microsoft.Extensions.AI.Evaluation.Reporting (28)
Generated\361d1da7f942c932\JsonContext.AdditionalPropertiesDictionaryInt64.g.cs (1)
47private void AdditionalPropertiesDictionaryInt64SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AdditionalPropertiesDictionary<long>? value)
Generated\361d1da7f942c932\JsonContext.EvaluationMetricInterpretation.g.cs (1)
118private void EvaluationMetricInterpretationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationMetricInterpretation? value)
Generated\361d1da7f942c932\JsonContext.IDictionaryStringEvaluationContext.g.cs (1)
47private void IDictionaryStringEvaluationContextSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::Microsoft.Extensions.AI.Evaluation.EvaluationContext>? value)
Generated\361d1da7f942c932\JsonContext.IDictionaryStringEvaluationMetric.g.cs (1)
47private void IDictionaryStringEvaluationMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::Microsoft.Extensions.AI.Evaluation.EvaluationMetric>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.BooleanMetric.g.cs (1)
200private void BooleanMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.BooleanMetric? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.CacheEntry.g.cs (1)
140private void CacheEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.Storage.DiskBasedResponseCache.CacheEntry? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatDetails.g.cs (1)
80private void ChatDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatTurnDetails.g.cs (1)
178private void ChatTurnDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.Dataset.g.cs (1)
119private void DatasetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.Formats.Dataset? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EvaluationContext.g.cs (1)
102private void EvaluationContextSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationContext? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EvaluationDiagnostic.g.cs (1)
100private void EvaluationDiagnosticSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationDiagnostic? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EvaluationResult.g.cs (1)
80private void EvaluationResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationResult? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAIAnnotation.g.cs (1)
47private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAIContent.g.cs (1)
47private void IListAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAnnotatedRegion.g.cs (1)
47private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListChatMessage.g.cs (1)
47private void IListChatMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.ChatMessage>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListChatTurnDetails.g.cs (1)
47private void IListChatTurnDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListEvaluationDiagnostic.g.cs (1)
47private void IListEvaluationDiagnosticSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.Evaluation.EvaluationDiagnostic>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListScenarioRunResult.g.cs (1)
47private void IListScenarioRunResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListString.g.cs (1)
47private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.NumericMetric.g.cs (1)
200private void NumericMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.NumericMetric? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ScenarioRunResult.g.cs (1)
270private void ScenarioRunResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.StringMetric.g.cs (1)
200private void StringMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.StringMetric? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.TextSpanAnnotatedRegion.g.cs (1)
98private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.UsageDetails.g.cs (1)
258private void UsageDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.UsageDetails? value)
JsonSerialization\EvaluationContextConverter.cs (1)
83public override void Write(Utf8JsonWriter writer, EvaluationContext value, JsonSerializerOptions options)
JsonSerialization\TimeSpanConverter.cs (1)
15public override void Write(Utf8JsonWriter writer, TimeSpan value, JsonSerializerOptions options)
Microsoft.Extensions.AI.Evaluation.Reporting.Azure (26)
Generated\361d1da7f942c932\JsonContext.AdditionalPropertiesDictionaryInt64.g.cs (1)
47private void AdditionalPropertiesDictionaryInt64SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AdditionalPropertiesDictionary<long>? value)
Generated\361d1da7f942c932\JsonContext.EvaluationMetricInterpretation.g.cs (1)
118private void EvaluationMetricInterpretationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationMetricInterpretation? value)
Generated\361d1da7f942c932\JsonContext.IDictionaryStringEvaluationContext.g.cs (1)
47private void IDictionaryStringEvaluationContextSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::Microsoft.Extensions.AI.Evaluation.EvaluationContext>? value)
Generated\361d1da7f942c932\JsonContext.IDictionaryStringEvaluationMetric.g.cs (1)
47private void IDictionaryStringEvaluationMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, global::Microsoft.Extensions.AI.Evaluation.EvaluationMetric>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.BooleanMetric.g.cs (1)
200private void BooleanMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.BooleanMetric? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.CacheEntry.g.cs (1)
140private void CacheEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.Storage.AzureStorageResponseCache.CacheEntry? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatDetails.g.cs (1)
80private void ChatDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.ChatDetails? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ChatTurnDetails.g.cs (1)
178private void ChatTurnDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EvaluationContext.g.cs (1)
102private void EvaluationContextSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationContext? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EvaluationDiagnostic.g.cs (1)
100private void EvaluationDiagnosticSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationDiagnostic? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.EvaluationResult.g.cs (1)
80private void EvaluationResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.EvaluationResult? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAIAnnotation.g.cs (1)
47private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAIContent.g.cs (1)
47private void IListAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListAnnotatedRegion.g.cs (1)
47private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListChatMessage.g.cs (1)
47private void IListChatMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.ChatMessage>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListChatTurnDetails.g.cs (1)
47private void IListChatTurnDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.Evaluation.Reporting.ChatTurnDetails>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListEvaluationDiagnostic.g.cs (1)
47private void IListEvaluationDiagnosticSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.Evaluation.EvaluationDiagnostic>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.IListString.g.cs (1)
47private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.NumericMetric.g.cs (1)
200private void NumericMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.NumericMetric? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.ScenarioRunResult.g.cs (1)
270private void ScenarioRunResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.Reporting.ScenarioRunResult? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.StringMetric.g.cs (1)
200private void StringMetricSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Evaluation.StringMetric? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.TextSpanAnnotatedRegion.g.cs (1)
98private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.UsageDetails.g.cs (1)
258private void UsageDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.UsageDetails? value)
parent\Microsoft.Extensions.AI.Evaluation.Reporting\CSharp\JsonSerialization\EvaluationContextConverter.cs (1)
83public override void Write(Utf8JsonWriter writer, EvaluationContext value, JsonSerializerOptions options)
parent\Microsoft.Extensions.AI.Evaluation.Reporting\CSharp\JsonSerialization\TimeSpanConverter.cs (1)
15public override void Write(Utf8JsonWriter writer, TimeSpan value, JsonSerializerOptions options)
Microsoft.Extensions.AI.OpenAI (9)
Generated\361d1da7f942c932\OpenAIJsonContext.DictionaryStringJsonElement.g.cs (1)
45private void DictionaryStringJsonElementSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Text.Json.JsonElement>? value)
Generated\361d1da7f942c932\OpenAIJsonContext.FunctionToolCallOutputElement.g.cs (1)
196private void FunctionToolCallOutputElementSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.OpenAIResponsesChatClient.FunctionToolCallOutputElement? value)
Generated\361d1da7f942c932\OpenAIJsonContext.ListFunctionToolCallOutputElement.g.cs (1)
45private void ListFunctionToolCallOutputElementSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.Extensions.AI.OpenAIResponsesChatClient.FunctionToolCallOutputElement>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OpenAIJsonContext.HashSetString.g.cs (1)
45private void HashSetStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.HashSet<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OpenAIJsonContext.IEnumerableString.g.cs (1)
45private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\OpenAIJsonContext.StringArray.g.cs (1)
45private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
MicrosoftExtensionsAIChatExtensions.cs (1)
240using Utf8JsonWriter writer = new(ms, new() { Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping });
OpenAIResponsesChatClient.cs (1)
889using (var writer = new Utf8JsonWriter(stream))
ResponsesClientContinuationToken.cs (1)
34using Utf8JsonWriter writer = new(stream);
Microsoft.Extensions.AI.OpenAI.Tests (2)
OpenAIResponseClientTests.cs (2)
6960using Utf8JsonWriter writer = new(stream); 7170using (var writer = new Utf8JsonWriter(ms))
Microsoft.Extensions.AI.Stabilization.Tests (8)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.AdditionalPropertiesDictionaryInt64.g.cs (1)
45private void AdditionalPropertiesDictionaryInt64SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AdditionalPropertiesDictionary<long>? value)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.IListAIAnnotation.g.cs (1)
45private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.IListAIContent.g.cs (1)
45private void IListAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.IListAnnotatedRegion.g.cs (1)
45private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.IListString.g.cs (1)
45private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.ListAIContent.g.cs (1)
45private void ListAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.TextSpanAnnotatedRegion.g.cs (1)
96private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\361d1da7f942c932\AIContentSerializationRegressionContext.UsageDetails.g.cs (1)
256private void UsageDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.UsageDetails? value)
Microsoft.Extensions.AI.Tests (34)
Generated\361d1da7f942c932\CustomAIContentJsonContext.IListAIAnnotation.g.cs (1)
45private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\361d1da7f942c932\CustomAIContentJsonContext.IListAnnotatedRegion.g.cs (1)
45private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\361d1da7f942c932\CustomAIContentJsonContext.TextSpanAnnotatedRegion.g.cs (1)
96private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.AdditionalPropertiesDictionaryInt64.g.cs (1)
45private void AdditionalPropertiesDictionaryInt64SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AdditionalPropertiesDictionary<long>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.AutoChatToolMode.g.cs (1)
56private void AutoChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AutoChatToolMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ChatResponseFormatJson.g.cs (1)
116private void ChatResponseFormatJsonSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatJson? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ChatResponseFormatText.g.cs (1)
56private void ChatResponseFormatTextSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatResponseFormatText? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DayOfWeekArray.g.cs (1)
45private void DayOfWeekArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.DayOfWeek[]? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DictionaryStringJsonDocument.g.cs (1)
45private void DictionaryStringJsonDocumentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Text.Json.JsonDocument>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DictionaryStringJsonNode.g.cs (1)
45private void DictionaryStringJsonNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Text.Json.Nodes.JsonNode>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.DictionaryStringString.g.cs (1)
45private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.EmbeddingGenerationOptions.g.cs (1)
136private void EmbeddingGenerationOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.EmbeddingGenerationOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.EmbeddingSingle.g.cs (1)
156private void EmbeddingSingleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.Embedding<float>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListAIAnnotation.g.cs (1)
45private void IListAIAnnotationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIAnnotation>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListAIContent.g.cs (1)
45private void IListAIContentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AIContent>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListAnnotatedRegion.g.cs (1)
45private void IListAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.AnnotatedRegion>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IListChatMessage.g.cs (1)
45private void IListChatMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.Extensions.AI.ChatMessage>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.IReadOnlyListChatResponseUpdate.g.cs (1)
45private void IReadOnlyListChatResponseUpdateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.Extensions.AI.ChatResponseUpdate>? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.NoneChatToolMode.g.cs (1)
56private void NoneChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.NoneChatToolMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ReadOnlyMemorySingle.g.cs (1)
45private void ReadOnlyMemorySingleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.ReadOnlyMemory<float> value)
Generated\361d1da7f942c932\TestJsonSerializerContext.ReasoningOptions.g.cs (1)
96private void ReasoningOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ReasoningOptions? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.RequiredChatToolMode.g.cs (1)
76private void RequiredChatToolModeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.RequiredChatToolMode? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.TextSpanAnnotatedRegion.g.cs (1)
96private void TextSpanAnnotatedRegionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.TextSpanAnnotatedRegion? value)
Generated\361d1da7f942c932\TestJsonSerializerContext.UsageDetails.g.cs (1)
256private void UsageDetailsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.UsageDetails? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.B.g.cs (1)
58private void BSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AIFunctionFactoryTest.B? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.Int32Array.g.cs (1)
47private void Int32ArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, int[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext.StructWithDefaultCtor.g.cs (1)
78private void StructWithDefaultCtorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.AIFunctionFactoryTest.StructWithDefaultCtor value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext2.Animal.g.cs (1)
118private void AnimalSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatClientStructuredOutputExtensionsTests.Animal? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext2.AnimalArray.g.cs (1)
47private void AnimalArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatClientStructuredOutputExtensionsTests.Animal[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext2.DataAnimal.g.cs (1)
78private void DataAnimalSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatClientStructuredOutputExtensionsTests.Data<global::Microsoft.Extensions.AI.ChatClientStructuredOutputExtensionsTests.Animal>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext2.EnvelopeAnimalArray.g.cs (1)
78private void EnvelopeAnimalArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatClientStructuredOutputExtensionsTests.Envelope<global::Microsoft.Extensions.AI.ChatClientStructuredOutputExtensionsTests.Animal[]>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\JsonContext2.EnvelopeInt32.g.cs (1)
78private void EnvelopeInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatClientStructuredOutputExtensionsTests.Envelope<int>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestJsonSerializerContext.ChatOptions.g.cs (1)
456private void ChatOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.ChatOptions? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestJsonSerializerContext.IListString.g.cs (1)
45private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
Microsoft.Extensions.Caching.Hybrid (1)
Internal\DefaultJsonSerializerFactory.cs (1)
157using var writer = new Utf8JsonWriter(target);
Microsoft.Extensions.DependencyModel (21)
DependencyContextWriter.cs (21)
26using (var jsonWriter = new Utf8JsonWriter(stream, options)) 41private static void WriteRuntimeTargetInfo(DependencyContext context, Utf8JsonWriter jsonWriter) 59private static void WriteRuntimeGraph(DependencyContext context, Utf8JsonWriter jsonWriter) 74private static void WriteCompilationOptions(CompilationOptions compilationOptions, Utf8JsonWriter jsonWriter) 100private static void AddStringPropertyIfNotNull(string name, string? value, Utf8JsonWriter jsonWriter) 108private static void AddBooleanPropertyIfNotNull(string name, bool? value, Utf8JsonWriter jsonWriter) 116private static void WriteTargets(DependencyContext context, Utf8JsonWriter jsonWriter) 132private static void WriteTarget(string key, IReadOnlyList<Library> libraries, Utf8JsonWriter jsonWriter) 144private static void WritePortableTarget(string key, IReadOnlyList<RuntimeLibrary> runtimeLibraries, IReadOnlyList<CompilationLibrary> compilationLibraries, Utf8JsonWriter jsonWriter) 176private static void AddCompilationAssemblies(IEnumerable<string> compilationAssemblies, Utf8JsonWriter jsonWriter) 186private static void AddAssets(string key, RuntimeAssetGroup? group, Utf8JsonWriter jsonWriter) 196private static void AddDependencies(IReadOnlyCollection<Dependency> dependencies, Utf8JsonWriter jsonWriter) 211private static void AddResourceAssemblies(IReadOnlyList<ResourceAssembly> resourceAssemblies, Utf8JsonWriter jsonWriter) 235private static void WriteTargetLibrary(string key, Library library, Utf8JsonWriter jsonWriter) 263private static void WritePortableTargetLibrary(string key, RuntimeLibrary? runtimeLibrary, CompilationLibrary? compilationLibrary, Utf8JsonWriter jsonWriter) 311private static bool AddRuntimeSpecificAssetGroups(string assetType, IEnumerable<RuntimeAssetGroup> assetGroups, bool wroteObjectStart, Utf8JsonWriter jsonWriter) 352private static void AddRuntimeSpecificAssets(IEnumerable<RuntimeFile> assets, string? runtime, string? assetType, Utf8JsonWriter jsonWriter) 380private static void WriteAssetList(string key, IEnumerable<string> assetPaths, Utf8JsonWriter jsonWriter) 391private static void WriteAssetList(string key, IEnumerable<RuntimeFile> runtimeFiles, Utf8JsonWriter jsonWriter) 420private static void WriteLibraries(DependencyContext context, Utf8JsonWriter jsonWriter) 434private static void WriteLibrary(string key, Library library, Utf8JsonWriter jsonWriter)
Microsoft.Extensions.Logging.Console (3)
JsonConsoleFormatter.cs (3)
62using (var writer = new Utf8JsonWriter(output, FormatterOptions.JsonWriterOptions)) 133private void WriteScopeInformation(Utf8JsonWriter writer, IExternalScopeProvider? scopeProvider) 159private static void WriteItem(Utf8JsonWriter writer, KeyValuePair<string, object?> item)
Microsoft.Extensions.Logging.EventSource (2)
EventSourceLogger.cs (2)
41private static Utf8JsonWriter? t_jsonWriter; 278Utf8JsonWriter writer = t_jsonWriter ??= new Utf8JsonWriter(stream);
Microsoft.JSInterop (7)
Implementation\JSObjectReferenceJsonWorker.cs (2)
58/// <param name="writer">The <see cref="Utf8JsonWriter"/>.</param> 60public static void WriteJSObjectReference(Utf8JsonWriter writer, JSObjectReference objectReference)
Infrastructure\ByteArrayJsonConverter.cs (1)
77public override void Write(Utf8JsonWriter writer, byte[] value, JsonSerializerOptions options)
Infrastructure\DotNetObjectReferenceJsonConverter.cs (1)
55public override void Write(Utf8JsonWriter writer, DotNetObjectReference<TValue> value, JsonSerializerOptions options)
Infrastructure\DotNetStreamReferenceJsonConverter.cs (1)
23public override void Write(Utf8JsonWriter writer, DotNetStreamReference value, JsonSerializerOptions options)
Infrastructure\JSObjectReferenceJsonConverter.cs (1)
34public override void Write(Utf8JsonWriter writer, IJSObjectReference value, JsonSerializerOptions options)
Infrastructure\JSStreamReferenceJsonConverter.cs (1)
67public override void Write(Utf8JsonWriter writer, IJSStreamReference value, JsonSerializerOptions options)
Microsoft.JSInterop.WebAssembly (1)
WebAssemblyJSObjectReferenceJsonConverter.cs (1)
38public override void Write(Utf8JsonWriter writer, IJSObjectReference value, JsonSerializerOptions options)
Microsoft.ML.AutoML (4)
SweepableEstimator\Converter\MultiModelPipelineConverter.cs (1)
24public override void Write(Utf8JsonWriter writer, MultiModelPipeline value, JsonSerializerOptions options)
SweepableEstimator\Converter\SweepableEstimatorConverter.cs (1)
27public override void Write(Utf8JsonWriter writer, SweepableEstimator value, JsonSerializerOptions options)
SweepableEstimator\Converter\SweepableEstimatorPipelineConverter.cs (1)
25public override void Write(Utf8JsonWriter writer, SweepableEstimatorPipeline value, JsonSerializerOptions options)
SweepableEstimator\Converter\SweepablePipelineConverter.cs (1)
25public override void Write(Utf8JsonWriter writer, SweepablePipeline value, JsonSerializerOptions options)
Microsoft.ML.AutoML.Tests (2)
Utils\DoubleToDecimalConverter.cs (1)
18public override void Write(Utf8JsonWriter writer, double value, JsonSerializerOptions options)
Utils\FloatToDecimalConverter.cs (1)
18public override void Write(Utf8JsonWriter writer, float value, JsonSerializerOptions options)
Microsoft.ML.SearchSpace (5)
Converter\ChoiceOptionConverter.cs (1)
35public override void Write(Utf8JsonWriter writer, ChoiceOption value, JsonSerializerOptions options)
Converter\NumericOptionConverter.cs (1)
50public override void Write(Utf8JsonWriter writer, UniformNumericOption value, JsonSerializerOptions options)
Converter\OptionConverter.cs (1)
46public override void Write(Utf8JsonWriter writer, OptionBase value, JsonSerializerOptions options)
Converter\ParameterConverter.cs (1)
54public override void Write(Utf8JsonWriter writer, Parameter value, JsonSerializerOptions options)
Converter\SearchSpaceConverter.cs (1)
23public override void Write(Utf8JsonWriter writer, SearchSpace value, JsonSerializerOptions options)
Microsoft.ML.SearchSpace.Tests (2)
SearchSpaceTest.cs (2)
370public override void Write(Utf8JsonWriter writer, double value, JsonSerializerOptions options) 381public override void Write(Utf8JsonWriter writer, float value, JsonSerializerOptions options)
Microsoft.ML.Tokenizers (4)
Utils\StringSpanOrdinalKey.cs (3)
139public override void WriteAsPropertyName(Utf8JsonWriter writer, StringSpanOrdinalKey value, JsonSerializerOptions options) => 143public override void Write(Utf8JsonWriter writer, StringSpanOrdinalKey value, JsonSerializerOptions options) => writer.WriteStringValue(value.Data!); 169public override void Write(Utf8JsonWriter writer, Vocabulary value, JsonSerializerOptions options) => throw new NotImplementedException();
Utils\TokenizerExtensions.cs (1)
68public override void Write(Utf8JsonWriter writer, SortedDictionary<int, string> value, JsonSerializerOptions options)
Microsoft.NET.Build.Tasks (9)
_generated\1\SdkVulnerabilitySummaryContext.SdkCveSummary.g.cs (1)
98private void SdkCveSummarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.NET.Build.Tasks.CheckSdkVulnerabilities.SdkCveSummary? value)
_generated\10\WorkloadSetJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\11\WorkloadSetJsonSerializerContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
_generated\18\InstallStateJsonSerializerContext.InstallStateContents.g.cs (1)
118private void InstallStateContentsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents? value)
_generated\19\InstallStateJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\2\SdkVulnerabilitySummaryContext.SdkVulnerabilitySummary.g.cs (1)
158private void SdkVulnerabilitySummarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.NET.Build.Tasks.CheckSdkVulnerabilities.SdkVulnerabilitySummary? value)
_generated\3\SdkVulnerabilitySummaryContext.ListSdkCveSummary.g.cs (1)
47private void ListSdkCveSummarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.NET.Build.Tasks.CheckSdkVulnerabilities.SdkCveSummary>? value)
GenerateRuntimeConfigurationFiles.cs (1)
429using (Utf8JsonWriter writer = new(stream, options))
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadPackId.cs (1)
54public override void Write(Utf8JsonWriter writer, WorkloadPackId value, JsonSerializerOptions options) => writer.WriteStringValue(value.ToString());
Microsoft.NET.Sdk.StaticWebAssets.Tasks (36)
_generated\0\StaticWebAssetsJsonSerializerContext.StaticWebAssetMatch.g.cs (1)
98private void StaticWebAssetMatchSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.GenerateStaticWebAssetsDevelopmentManifest.StaticWebAssetMatch? value)
_generated\1\StaticWebAssetsJsonSerializerContext.StaticWebAssetNode.g.cs (1)
118private void StaticWebAssetNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.GenerateStaticWebAssetsDevelopmentManifest.StaticWebAssetNode? value)
_generated\10\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointPropertyArray.g.cs (1)
47private void StaticWebAssetEndpointPropertyArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointProperty[]? value)
_generated\11\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointResponseHeader.g.cs (1)
98private void StaticWebAssetEndpointResponseHeaderSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointResponseHeader value)
_generated\12\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointResponseHeaderArray.g.cs (1)
47private void StaticWebAssetEndpointResponseHeaderArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointResponseHeader[]? value)
_generated\13\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointSelector.g.cs (1)
118private void StaticWebAssetEndpointSelectorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointSelector value)
_generated\14\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointSelectorArray.g.cs (1)
47private void StaticWebAssetEndpointSelectorArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointSelector[]? value)
_generated\15\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointsManifest.g.cs (1)
118private void StaticWebAssetEndpointsManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointsManifest? value)
_generated\16\StaticWebAssetsJsonSerializerContext.StaticWebAssetPackageManifest.g.cs (1)
138private void StaticWebAssetPackageManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetPackageManifest? value)
_generated\17\StaticWebAssetsJsonSerializerContext.StaticWebAssetsDiscoveryPattern.g.cs (1)
158private void StaticWebAssetsDiscoveryPatternSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetsDiscoveryPattern? value)
_generated\18\StaticWebAssetsJsonSerializerContext.StaticWebAssetsDiscoveryPatternArray.g.cs (1)
47private void StaticWebAssetsDiscoveryPatternArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetsDiscoveryPattern[]? value)
_generated\19\StaticWebAssetsJsonSerializerContext.StaticWebAssetsManifest.g.cs (1)
258private void StaticWebAssetsManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetsManifest? value)
_generated\2\StaticWebAssetsJsonSerializerContext.StaticWebAssetPattern.g.cs (1)
118private void StaticWebAssetPatternSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.GenerateStaticWebAssetsDevelopmentManifest.StaticWebAssetPattern? value)
_generated\20\StaticWebAssetsJsonSerializerContext.ReferencedProjectConfiguration.g.cs (1)
238private void ReferencedProjectConfigurationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetsManifest.ReferencedProjectConfiguration? value)
_generated\21\StaticWebAssetsJsonSerializerContext.ReferencedProjectConfigurationArray.g.cs (1)
47private void ReferencedProjectConfigurationArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetsManifest.ReferencedProjectConfiguration[]? value)
_generated\22\StaticWebAssetsJsonSerializerContext.DictionaryStringStaticWebAssetNode.g.cs (1)
47private void DictionaryStringStaticWebAssetNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.GenerateStaticWebAssetsDevelopmentManifest.StaticWebAssetNode>? value)
_generated\23\StaticWebAssetsJsonSerializerContext.DictionaryStringStaticWebAsset.g.cs (1)
47private void DictionaryStringStaticWebAssetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAsset>? value)
_generated\28\StaticWebAssetsJsonSerializerContext.StringArray.g.cs (1)
47private void StringArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, string[]? value)
_generated\3\StaticWebAssetsJsonSerializerContext.StaticWebAssetPatternArray.g.cs (1)
47private void StaticWebAssetPatternArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.GenerateStaticWebAssetsDevelopmentManifest.StaticWebAssetPattern[]? value)
_generated\33\DefineStaticWebAssetsSerializerContext.CopyCandidate.g.cs (1)
104private void CopyCandidateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.DefineStaticWebAssets.CopyCandidate? value)
_generated\34\DefineStaticWebAssetsSerializerContext.DefineStaticWebAssetsCache.g.cs (1)
192private void DefineStaticWebAssetsCacheSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.DefineStaticWebAssets.DefineStaticWebAssetsCache? value)
_generated\35\DefineStaticWebAssetsSerializerContext.StaticWebAsset.g.cs (1)
500private void StaticWebAssetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAsset? value)
_generated\36\DefineStaticWebAssetsSerializerContext.DictionaryStringCopyCandidate.g.cs (1)
49private void DictionaryStringCopyCandidateSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.DefineStaticWebAssets.CopyCandidate>? value)
_generated\37\DefineStaticWebAssetsSerializerContext.DictionaryStringStaticWebAsset.g.cs (1)
49private void DictionaryStringStaticWebAssetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAsset>? value)
_generated\38\DefineStaticWebAssetsSerializerContext.HashSetString.g.cs (1)
49private void HashSetStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.HashSet<string>? value)
_generated\4\StaticWebAssetsJsonSerializerContext.StaticWebAssetsDevelopmentManifest.g.cs (1)
98private void StaticWebAssetsDevelopmentManifestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.GenerateStaticWebAssetsDevelopmentManifest.StaticWebAssetsDevelopmentManifest? value)
_generated\42\DefineStaticWebAssetsSerializerContext.g.cs (1)
46private static void WriteByteArrayValue(global::System.Text.Json.Utf8JsonWriter writer, byte[]? value)
_generated\45\ImportMapSerializerContext.ImportMap.g.cs (1)
124private void ImportMapSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.ImportMap? value)
_generated\46\ImportMapSerializerContext.DictionaryStringDictionaryStringString.g.cs (1)
47private void DictionaryStringDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.Dictionary<string, string>>? value)
_generated\47\ImportMapSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\5\StaticWebAssetsJsonSerializerContext.StaticWebAsset.g.cs (1)
498private void StaticWebAssetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAsset? value)
_generated\6\StaticWebAssetsJsonSerializerContext.StaticWebAssetArray.g.cs (1)
47private void StaticWebAssetArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAsset[]? value)
_generated\7\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpoint.g.cs (1)
178private void StaticWebAssetEndpointSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpoint? value)
_generated\8\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointArray.g.cs (1)
47private void StaticWebAssetEndpointArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpoint[]? value)
_generated\9\StaticWebAssetsJsonSerializerContext.StaticWebAssetEndpointProperty.g.cs (1)
98private void StaticWebAssetEndpointPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.StaticWebAssetEndpointProperty value)
Data\StaticAssetsManifest.cs (1)
45var writer = new Utf8JsonWriter(stream, new JsonWriterOptions { SkipValidation = true });
Microsoft.NET.Sdk.WorkloadManifestReader (5)
_generated\0\WorkloadSetJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\1\WorkloadSetJsonSerializerContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
_generated\8\InstallStateJsonSerializerContext.InstallStateContents.g.cs (1)
118private void InstallStateContentsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Cli.Commands.Workload.InstallStateContents? value)
_generated\9\InstallStateJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
WorkloadPackId.cs (1)
54public override void Write(Utf8JsonWriter writer, WorkloadPackId value, JsonSerializerOptions options) => writer.WriteStringValue(value.ToString());
Microsoft.NETCore.Platforms (1)
UpdateRuntimeIdentifierGraph.cs (1)
46using Utf8JsonWriter jsonWriter = new(streamWriter, new JsonWriterOptions { Indented = true });
Microsoft.TemplateEngine.Cli (2)
HostSpecificTemplateData.cs (1)
212public override void Write(Utf8JsonWriter writer, HostSpecificTemplateData value, JsonSerializerOptions options)
JExtensions.cs (1)
229using var writer = new Utf8JsonWriter(fileStream);
Microsoft.TemplateEngine.Edge (25)
_generated\0\GlobalSettingsJsonSerializerContext.TemplatePackageData.g.cs (1)
139private void TemplatePackageDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Abstractions.Installer.TemplatePackageData? value)
_generated\1\GlobalSettingsJsonSerializerContext.GlobalSettingsData.g.cs (1)
79private void GlobalSettingsDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Edge.BuiltInManagedProvider.GlobalSettingsData? value)
_generated\10\SettingsStoreJsonSerializerContext.SettingsStore.g.cs (1)
121private void SettingsStoreSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Edge.Settings.SettingsStore? value)
_generated\11\SettingsStoreJsonSerializerContext.DictionaryStringHashSetGuid.g.cs (1)
47private void DictionaryStringHashSetGuidSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.HashSet<global::System.Guid>>? value)
_generated\12\SettingsStoreJsonSerializerContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\13\SettingsStoreJsonSerializerContext.HashSetGuid.g.cs (1)
47private void HashSetGuidSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.HashSet<global::System.Guid>? value)
_generated\14\SettingsStoreJsonSerializerContext.HashSetString.g.cs (1)
47private void HashSetStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.HashSet<string>? value)
_generated\2\GlobalSettingsJsonSerializerContext.IReadOnlyDictionaryStringString.g.cs (1)
47private void IReadOnlyDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyDictionary<string, string>? value)
_generated\21\TemplateCacheJsonSerializerContext.TemplateConstraintInfo.g.cs (1)
99private void TemplateConstraintInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Abstractions.Constraints.TemplateConstraintInfo? value)
_generated\22\TemplateCacheJsonSerializerContext.IBaselineInfo.g.cs (1)
99private void IBaselineInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Abstractions.IBaselineInfo? value)
_generated\23\TemplateCacheJsonSerializerContext.ITemplateParameter.g.cs (1)
322private void ITemplateParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Abstractions.ITemplateParameter? value)
_generated\24\TemplateCacheJsonSerializerContext.ParameterChoice.g.cs (1)
98private void ParameterChoiceSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Abstractions.ParameterChoice? value)
_generated\25\TemplateCacheJsonSerializerContext.IParameterDefinitionSet.g.cs (1)
47private void IParameterDefinitionSetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Abstractions.Parameters.IParameterDefinitionSet? value)
_generated\27\TemplateCacheJsonSerializerContext.TemplateParameterPrecedence.g.cs (1)
158private void TemplateParameterPrecedenceSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Abstractions.TemplateParameterPrecedence? value)
_generated\29\TemplateCacheJsonSerializerContext.TemplateCache.g.cs (1)
141private void TemplateCacheSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Edge.Settings.TemplateCache? value)
_generated\3\GlobalSettingsJsonSerializerContext.IReadOnlyListTemplatePackageData.g.cs (1)
47private void IReadOnlyListTemplatePackageDataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.TemplateEngine.Abstractions.Installer.TemplatePackageData>? value)
_generated\30\TemplateCacheJsonSerializerContext.TemplateInfo.g.cs (1)
536private void TemplateInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Edge.Settings.TemplateInfo? value)
_generated\31\TemplateCacheJsonSerializerContext.DictionaryStringDateTime.g.cs (1)
47private void DictionaryStringDateTimeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.DateTime>? value)
_generated\32\TemplateCacheJsonSerializerContext.IReadOnlyDictionaryStringIBaselineInfo.g.cs (1)
47private void IReadOnlyDictionaryStringIBaselineInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyDictionary<string, global::Microsoft.TemplateEngine.Abstractions.IBaselineInfo>? value)
_generated\33\TemplateCacheJsonSerializerContext.IReadOnlyDictionaryStringParameterChoice.g.cs (1)
47private void IReadOnlyDictionaryStringParameterChoiceSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyDictionary<string, global::Microsoft.TemplateEngine.Abstractions.ParameterChoice>? value)
_generated\34\TemplateCacheJsonSerializerContext.IReadOnlyDictionaryStringString.g.cs (1)
47private void IReadOnlyDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyDictionary<string, string>? value)
_generated\35\TemplateCacheJsonSerializerContext.IReadOnlyListTemplateConstraintInfo.g.cs (1)
47private void IReadOnlyListTemplateConstraintInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.TemplateEngine.Abstractions.Constraints.TemplateConstraintInfo>? value)
_generated\36\TemplateCacheJsonSerializerContext.IReadOnlyListTemplateInfo.g.cs (1)
47private void IReadOnlyListTemplateInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::Microsoft.TemplateEngine.Edge.Settings.TemplateInfo>? value)
_generated\37\TemplateCacheJsonSerializerContext.IReadOnlyListGuid.g.cs (1)
47private void IReadOnlyListGuidSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::System.Guid>? value)
_generated\38\TemplateCacheJsonSerializerContext.IReadOnlyListString.g.cs (1)
47private void IReadOnlyListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<string>? value)
Microsoft.TemplateSearch.Common (2)
TemplateSearchCache\TemplatePackageSearchData.Json.cs (1)
77public override void Write(Utf8JsonWriter writer, TemplatePackageSearchData value, JsonSerializerOptions options)
TemplateSearchCache\TemplateSearchData.Json.cs (1)
50public override void Write(Utf8JsonWriter writer, TemplateSearchData value, JsonSerializerOptions options)
Microsoft.TestPlatform.CommunicationUtilities (107)
_generated\10\TestPlatformJsonContext.PayloadedMessageTestRunChangedEventArgs.g.cs (1)
78private void PayloadedMessageTestRunChangedEventArgsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs>? value)
_generated\11\TestPlatformJsonContext.PayloadedMessageEditorAttachDebuggerPayload.g.cs (1)
78private void PayloadedMessageEditorAttachDebuggerPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload>? value)
_generated\12\TestPlatformJsonContext.PayloadedMessageTelemetryEvent.g.cs (1)
78private void PayloadedMessageTelemetryEventSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TelemetryEvent>? value)
_generated\13\TestPlatformJsonContext.PayloadedMessageTestProcessStartInfo.g.cs (1)
78private void PayloadedMessageTestProcessStartInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo>? value)
_generated\14\TestPlatformJsonContext.PayloadedMessageIEnumerableTestCase.g.cs (1)
78private void PayloadedMessageIEnumerableTestCaseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::System.Collections.Generic.IEnumerable<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>>? value)
_generated\15\TestPlatformJsonContext.PayloadedMessageListTestCase.g.cs (1)
78private void PayloadedMessageListTestCaseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::System.Collections.Generic.List<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>>? value)
_generated\16\TestPlatformJsonContext.PayloadedMessageInt32.g.cs (1)
78private void PayloadedMessageInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<int>? value)
_generated\17\TestPlatformJsonContext.VersionedMessageEnvelope.g.cs (1)
118private void VersionedMessageEnvelopeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.VersionedMessageEnvelope? value)
_generated\19\TestPlatformJsonContext.BeforeTestRunStartPayload.g.cs (1)
118private void BeforeTestRunStartPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.BeforeTestRunStartPayload? value)
_generated\2\TestPlatformJsonContext.AfterTestRunEndResult.g.cs (1)
120private void AfterTestRunEndResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.Common.DataCollection.AfterTestRunEndResult? value)
_generated\20\TestPlatformJsonContext.DiscoveryCompletePayload.g.cs (1)
238private void DiscoveryCompletePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload? value)
_generated\21\TestPlatformJsonContext.TestHostLaunchedPayload.g.cs (1)
78private void TestHostLaunchedPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestHostLaunchedPayload? value)
_generated\22\TestPlatformJsonContext.TestMessagePayload.g.cs (1)
98private void TestMessagePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload? value)
_generated\23\TestPlatformJsonContext.TestRunAttachmentsProcessingCompletePayload.g.cs (1)
98private void TestRunAttachmentsProcessingCompletePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload? value)
_generated\24\TestPlatformJsonContext.TestRunAttachmentsProcessingProgressPayload.g.cs (1)
78private void TestRunAttachmentsProcessingProgressPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingProgressPayload? value)
_generated\25\TestPlatformJsonContext.TestRunCompletePayload.g.cs (1)
138private void TestRunCompletePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload? value)
_generated\26\TestPlatformJsonContext.TestRunStatsPayload.g.cs (1)
98private void TestRunStatsPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunStatsPayload? value)
_generated\27\TestPlatformJsonContext.AttachmentSet.g.cs (1)
121private void AttachmentSetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet? value)
_generated\28\TestPlatformJsonContext.CustomHostLaunchAckPayload.g.cs (1)
98private void CustomHostLaunchAckPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.CustomHostLaunchAckPayload? value)
_generated\29\TestPlatformJsonContext.DiscoveryCriteria.g.cs (1)
220private void DiscoveryCriteriaSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryCriteria? value)
_generated\3\TestPlatformJsonContext.BeforeTestRunStartResult.g.cs (1)
99private void BeforeTestRunStartResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.Common.DataCollection.BeforeTestRunStartResult? value)
_generated\30\TestPlatformJsonContext.DiscoveryRequestPayload.g.cs (1)
138private void DiscoveryRequestPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.DiscoveryRequestPayload? value)
_generated\31\TestPlatformJsonContext.EditorAttachDebuggerAckPayload.g.cs (1)
98private void EditorAttachDebuggerAckPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.EditorAttachDebuggerAckPayload? value)
_generated\32\TestPlatformJsonContext.FilterOptions.g.cs (1)
98private void FilterOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.FilterOptions? value)
_generated\33\TestPlatformJsonContext.ITestHostLauncher.g.cs (1)
78private void ITestHostLauncherSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.Interfaces.ITestHostLauncher? value)
_generated\34\TestPlatformJsonContext.ITestRunStatistics.g.cs (1)
98private void ITestRunStatisticsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.ITestRunStatistics? value)
_generated\35\TestPlatformJsonContext.TestPlatformOptions.g.cs (1)
138private void TestPlatformOptionsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestPlatformOptions? value)
_generated\36\TestPlatformJsonContext.TestRunAttachmentsProcessingCompleteEventArgs.g.cs (1)
118private void TestRunAttachmentsProcessingCompleteEventArgsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingCompleteEventArgs? value)
_generated\37\TestPlatformJsonContext.TestRunAttachmentsProcessingPayload.g.cs (1)
138private void TestRunAttachmentsProcessingPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingPayload? value)
_generated\38\TestPlatformJsonContext.TestRunAttachmentsProcessingProgressEventArgs.g.cs (1)
139private void TestRunAttachmentsProcessingProgressEventArgsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunAttachmentsProcessingProgressEventArgs? value)
_generated\39\TestPlatformJsonContext.TestRunChangedEventArgs.g.cs (1)
118private void TestRunChangedEventArgsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunChangedEventArgs? value)
_generated\4\TestPlatformJsonContext.MessageEnvelope.g.cs (1)
98private void MessageEnvelopeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.MessageEnvelope? value)
_generated\40\TestPlatformJsonContext.TestRunCompleteEventArgs.g.cs (1)
240private void TestRunCompleteEventArgsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCompleteEventArgs? value)
_generated\41\TestPlatformJsonContext.TestRunCriteria.g.cs (1)
338private void TestRunCriteriaSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria? value)
_generated\42\TestPlatformJsonContext.TestRunRequestPayload.g.cs (1)
198private void TestRunRequestPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunRequestPayload? value)
_generated\43\TestPlatformJsonContext.TestRunStatistics.g.cs (1)
98private void TestRunStatisticsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunStatistics? value)
_generated\44\TestPlatformJsonContext.TestSessionInfo.g.cs (1)
78private void TestSessionInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestSessionInfo? value)
_generated\45\TestPlatformJsonContext.EditorAttachDebuggerPayload.g.cs (1)
118private void EditorAttachDebuggerPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.EditorAttachDebuggerPayload? value)
_generated\46\TestPlatformJsonContext.InvokedDataCollector.g.cs (1)
162private void InvokedDataCollectorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector? value)
_generated\48\TestPlatformJsonContext.TelemetryEvent.g.cs (1)
100private void TelemetryEventSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TelemetryEvent? value)
_generated\5\TestPlatformJsonContext.PayloadedMessageDiscoveryCompletePayload.g.cs (1)
78private void PayloadedMessageDiscoveryCompletePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.DiscoveryCompletePayload>? value)
_generated\50\TestPlatformJsonContext.TestCaseArray.g.cs (1)
47private void TestCaseArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase[]? value)
_generated\51\TestPlatformJsonContext.TestObject.g.cs (1)
100private void TestObjectSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestObject? value)
_generated\53\TestPlatformJsonContext.TestProcessAttachDebuggerPayload.g.cs (1)
98private void TestProcessAttachDebuggerPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessAttachDebuggerPayload? value)
_generated\54\TestPlatformJsonContext.TestProcessStartInfo.g.cs (1)
158private void TestProcessStartInfoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProcessStartInfo? value)
_generated\55\TestPlatformJsonContext.TestProperty.g.cs (1)
208private void TestPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty? value)
_generated\57\TestPlatformJsonContext.TestResult.g.cs (1)
344private void TestResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult? value)
_generated\58\TestPlatformJsonContext.TestResultMessage.g.cs (1)
99private void TestResultMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage? value)
_generated\59\TestPlatformJsonContext.Trait.g.cs (1)
102private void TraitSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.Trait? value)
_generated\6\TestPlatformJsonContext.PayloadedMessageTestMessagePayload.g.cs (1)
78private void PayloadedMessageTestMessagePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestMessagePayload>? value)
_generated\60\TestPlatformJsonContext.TraitCollection.g.cs (1)
47private void TraitCollectionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TraitCollection? value)
_generated\61\TestPlatformJsonContext.UriDataAttachment.g.cs (1)
99private void UriDataAttachmentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment? value)
_generated\63\TestPlatformJsonContext.DictionaryStringHashSetString.g.cs (1)
47private void DictionaryStringHashSetStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.HashSet<string>>? value)
_generated\64\TestPlatformJsonContext.DictionaryStringIEnumerableString.g.cs (1)
47private void DictionaryStringIEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.IEnumerable<string>>? value)
_generated\66\TestPlatformJsonContext.DictionaryStringString.g.cs (1)
47private void DictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, string>? value)
_generated\67\TestPlatformJsonContext.HashSetString.g.cs (1)
47private void HashSetStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.HashSet<string>? value)
_generated\68\TestPlatformJsonContext.ICollectionAttachmentSet.g.cs (1)
47private void ICollectionAttachmentSetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.ICollection<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>? value)
_generated\69\TestPlatformJsonContext.ICollectionUri.g.cs (1)
47private void ICollectionUriSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.ICollection<global::System.Uri>? value)
_generated\7\TestPlatformJsonContext.PayloadedMessageTestRunAttachmentsProcessingCompletePayload.g.cs (1)
78private void PayloadedMessageTestRunAttachmentsProcessingCompletePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingCompletePayload>? value)
_generated\70\TestPlatformJsonContext.ICollectionString.g.cs (1)
47private void ICollectionStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.ICollection<string>? value)
_generated\73\TestPlatformJsonContext.IDictionaryStringString.g.cs (1)
47private void IDictionaryStringStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IDictionary<string, string>? value)
_generated\74\TestPlatformJsonContext.IEnumerableAttachmentSet.g.cs (1)
47private void IEnumerableAttachmentSetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>? value)
_generated\75\TestPlatformJsonContext.IEnumerableInvokedDataCollector.g.cs (1)
47private void IEnumerableInvokedDataCollectorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector>? value)
_generated\76\TestPlatformJsonContext.IEnumerableTestCase.g.cs (1)
47private void IEnumerableTestCaseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>? value)
_generated\77\TestPlatformJsonContext.IEnumerableTestProperty.g.cs (1)
47private void IEnumerableTestPropertySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty>? value)
_generated\78\TestPlatformJsonContext.IEnumerableTestResult.g.cs (1)
47private void IEnumerableTestResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResult>? value)
_generated\79\TestPlatformJsonContext.IEnumerableString.g.cs (1)
47private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
_generated\8\TestPlatformJsonContext.PayloadedMessageTestRunAttachmentsProcessingProgressPayload.g.cs (1)
78private void PayloadedMessageTestRunAttachmentsProcessingProgressPayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunAttachmentsProcessingProgressPayload>? value)
_generated\80\TestPlatformJsonContext.IListUriDataAttachment.g.cs (1)
47private void IListUriDataAttachmentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.UriDataAttachment>? value)
_generated\81\TestPlatformJsonContext.IListString.g.cs (1)
47private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
_generated\83\TestPlatformJsonContext.ListAttachmentSet.g.cs (1)
47private void ListAttachmentSetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>? value)
_generated\84\TestPlatformJsonContext.ListTestCase.g.cs (1)
47private void ListTestCaseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestCase>? value)
_generated\85\TestPlatformJsonContext.ListKeyValuePairTestPropertyObject.g.cs (1)
47private void ListKeyValuePairTestPropertyObjectSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::System.Collections.Generic.KeyValuePair<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestProperty, object>>? value)
_generated\86\TestPlatformJsonContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
_generated\88\TestPlatformJsonContext.CollectionAttachmentSet.g.cs (1)
47private void CollectionAttachmentSetSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.ObjectModel.Collection<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.AttachmentSet>? value)
_generated\89\TestPlatformJsonContext.CollectionInvokedDataCollector.g.cs (1)
47private void CollectionInvokedDataCollectorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.ObjectModel.Collection<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.InvokedDataCollector>? value)
_generated\9\TestPlatformJsonContext.PayloadedMessageTestRunCompletePayload.g.cs (1)
78private void PayloadedMessageTestRunCompletePayloadSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.JsonDataSerializer.PayloadedMessage<global::Microsoft.VisualStudio.TestPlatform.CommunicationUtilities.ObjectModel.TestRunCompletePayload>? value)
_generated\90\TestPlatformJsonContext.CollectionTestResultMessage.g.cs (1)
47private void CollectionTestResultMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.ObjectModel.Collection<global::Microsoft.VisualStudio.TestPlatform.ObjectModel.TestResultMessage>? value)
_generated\92\TestPlatformJsonContext.Exception.g.cs (1)
220private void ExceptionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Exception? value)
Serialization\AfterTestRunEndResultConverter.cs (2)
42public override void Write(Utf8JsonWriter writer, AfterTestRunEndResult value, JsonSerializerOptions options) 61private static void WriteProperty<T>(Utf8JsonWriter writer, string name, T value, JsonSerializerOptions options)
Serialization\AttachmentConverters.cs (2)
43public override void Write(Utf8JsonWriter writer, AttachmentSet value, JsonSerializerOptions options) 73public override void Write(Utf8JsonWriter writer, UriDataAttachment value, JsonSerializerOptions options)
Serialization\DiscoveryCriteriaConverter.cs (2)
57public override void Write(Utf8JsonWriter writer, DiscoveryCriteria value, JsonSerializerOptions options) 83private static void WriteProperty<T>(Utf8JsonWriter writer, string name, T value, JsonSerializerOptions options)
Serialization\ExceptionConverter.cs (1)
71public override void Write(Utf8JsonWriter writer, Exception value, JsonSerializerOptions options)
Serialization\ObjectConverter.cs (2)
64public override void Write(Utf8JsonWriter writer, object value, JsonSerializerOptions options) 119public override void Write(Utf8JsonWriter writer, IDictionary<string, object> value, JsonSerializerOptions options)
Serialization\StjSafe.cs (1)
51internal static void Serialize<T>(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
Serialization\TestCaseConverter.cs (2)
101public override void Write(Utf8JsonWriter writer, TestCase value, JsonSerializerOptions options) 163private static void WriteProperty(Utf8JsonWriter writer, TestProperty property, JsonSerializerOptions options)
Serialization\TestCaseConverterV2.cs (1)
76public override void Write(Utf8JsonWriter writer, TestCase value, JsonSerializerOptions options)
Serialization\TestExecutionContextConverter.cs (1)
48public override void Write(Utf8JsonWriter writer, TestExecutionContext value, JsonSerializerOptions options)
Serialization\TestObjectBaseConverter.cs (2)
99public override void Write(Utf8JsonWriter writer, TestObject value, JsonSerializerOptions options) 131internal static void WritePropertyValue(Utf8JsonWriter writer, object value, JsonSerializerOptions options)
Serialization\TestObjectConverter.cs (1)
71public override void Write(Utf8JsonWriter writer, List<KeyValuePair<TestProperty, object>> value, JsonSerializerOptions options)
Serialization\TestProcessAttachDebuggerPayloadConverter.cs (1)
40public override void Write(Utf8JsonWriter writer, TestProcessAttachDebuggerPayload value, JsonSerializerOptions options)
Serialization\TestPropertyConverter.cs (1)
71public override void Write(Utf8JsonWriter writer, TestProperty value, JsonSerializerOptions options)
Serialization\TestResultConverter.cs (2)
113public override void Write(Utf8JsonWriter writer, TestResult value, JsonSerializerOptions options) 188private static void WriteProperty(Utf8JsonWriter writer, TestProperty property, JsonSerializerOptions options)
Serialization\TestResultConverterV2.cs (1)
105public override void Write(Utf8JsonWriter writer, TestResult value, JsonSerializerOptions options)
Serialization\TestRunChangedEventArgsConverter.cs (2)
41public override void Write(Utf8JsonWriter writer, TestRunChangedEventArgs value, JsonSerializerOptions options) 60private static void WriteProperty<T>(Utf8JsonWriter writer, string name, T value, JsonSerializerOptions options)
Serialization\TestRunCompleteEventArgsConverter.cs (2)
50public override void Write(Utf8JsonWriter writer, TestRunCompleteEventArgs value, JsonSerializerOptions options) 75private static void WriteProperty<T>(Utf8JsonWriter writer, string name, T value, JsonSerializerOptions options)
Serialization\TestRunStatisticsConverter.cs (1)
48public override void Write(Utf8JsonWriter writer, ITestRunStatistics value, JsonSerializerOptions options)
Serialization\TestSessionInfoConverter.cs (1)
38public override void Write(Utf8JsonWriter writer, TestSessionInfo value, JsonSerializerOptions options)
NuGet.CommandLine.XPlat (22)
_generated\10\PackageSearchJsonContext.NuGetLicenseExpression.g.cs (1)
78private void NuGetLicenseExpressionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Packaging.Licenses.NuGetLicenseExpression? value)
_generated\12\PackageSearchJsonContext.PackageDependencyGroup.g.cs (1)
100private void PackageDependencyGroupSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Packaging.PackageDependencyGroup? value)
_generated\13\PackageSearchJsonContext.IPackageSearchMetadata.g.cs (1)
521private void IPackageSearchMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Core.Types.IPackageSearchMetadata? value)
_generated\15\PackageSearchJsonContext.FloatRange.g.cs (1)
159private void FloatRangeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Versioning.FloatRange? value)
_generated\16\PackageSearchJsonContext.NuGetVersion.g.cs (1)
321private void NuGetVersionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Versioning.NuGetVersion? value)
_generated\18\PackageSearchJsonContext.VersionRange.g.cs (1)
398private void VersionRangeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Versioning.VersionRange? value)
_generated\19\PackageSearchJsonContext.IEnumerablePackageDependency.g.cs (1)
47private void IEnumerablePackageDependencySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::NuGet.Packaging.Core.PackageDependency>? value)
_generated\20\PackageSearchJsonContext.IEnumerablePackageDependencyGroup.g.cs (1)
47private void IEnumerablePackageDependencyGroupSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::NuGet.Packaging.PackageDependencyGroup>? value)
_generated\21\PackageSearchJsonContext.IEnumerablePackageVulnerabilityMetadata.g.cs (1)
47private void IEnumerablePackageVulnerabilityMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<global::NuGet.Protocol.PackageVulnerabilityMetadata>? value)
_generated\22\PackageSearchJsonContext.IEnumerableString.g.cs (1)
47private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
_generated\23\PackageSearchJsonContext.IReadOnlyListString.g.cs (1)
47private void IReadOnlyListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<string>? value)
_generated\24\PackageSearchJsonContext.ListPackageSearchProblem.g.cs (1)
47private void ListPackageSearchProblemSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::NuGet.CommandLine.XPlat.PackageSearchProblem>? value)
_generated\25\PackageSearchJsonContext.ListPackageSearchResult.g.cs (1)
47private void ListPackageSearchResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::NuGet.CommandLine.XPlat.PackageSearchResult>? value)
_generated\26\PackageSearchJsonContext.ListIPackageSearchMetadata.g.cs (1)
47private void ListIPackageSearchMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::NuGet.Protocol.Core.Types.IPackageSearchMetadata>? value)
_generated\3\PackageSearchJsonContext.PackageSearchResult.g.cs (1)
118private void PackageSearchResultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.CommandLine.XPlat.PackageSearchResult? value)
_generated\4\PackageSearchJsonContext.SearchMainOutput.g.cs (1)
122private void SearchMainOutputSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.CommandLine.XPlat.SearchMainOutput? value)
_generated\5\PackageSearchJsonContext.NuGetFramework.g.cs (1)
385private void NuGetFrameworkSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Frameworks.NuGetFramework? value)
_generated\6\PackageSearchJsonContext.PackageDependency.g.cs (1)
142private void PackageDependencySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Packaging.Core.PackageDependency? value)
_generated\7\PackageSearchJsonContext.PackageIdentity.g.cs (1)
120private void PackageIdentitySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Packaging.Core.PackageIdentity? value)
_generated\8\PackageSearchJsonContext.LicenseMetadata.g.cs (1)
181private void LicenseMetadataSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Packaging.LicenseMetadata? value)
Commands\PackageSearch\JsonFormat\SearchResultPackagesConverter.cs (2)
26internal static void WriteStringIfNotNullOrWhiteSpace(Utf8JsonWriter writer, string name, string? value) 39public override void Write(Utf8JsonWriter writer, IPackageSearchMetadata value, JsonSerializerOptions options)
NuGet.Credentials (2)
_generated\1\PluginCredentialResponseJsonContext.PluginCredentialResponse.g.cs (1)
158private void PluginCredentialResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Credentials.PluginCredentialResponse? value)
_generated\2\PluginCredentialResponseJsonContext.IListString.g.cs (1)
47private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
NuGet.Packaging (1)
_generated\0\NupkgMetadataSerializationContext.NupkgMetadataFile.g.cs (1)
119private void NupkgMetadataFileSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Packaging.NupkgMetadataFile? value)
NuGet.ProjectModel (7)
_generated\19\AssetsLogMessageSourceGen.IReadOnlyListString.g.cs (1)
49private void IReadOnlyListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<string>? value)
_generated\4\CacheFileSourceGen.CacheFile.g.cs (1)
200private void CacheFileSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.ProjectModel.CacheFile? value)
_generated\5\CacheFileSourceGen.IAssetsLogMessage.g.cs (1)
300private void IAssetsLogMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.ProjectModel.IAssetsLogMessage? value)
_generated\6\CacheFileSourceGen.IListIAssetsLogMessage.g.cs (1)
49private void IListIAssetsLogMessageSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<global::NuGet.ProjectModel.IAssetsLogMessage>? value)
_generated\7\CacheFileSourceGen.IListString.g.cs (1)
49private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
_generated\8\CacheFileSourceGen.IReadOnlyListString.g.cs (1)
49private void IReadOnlyListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<string>? value)
CacheFileFormat.cs (1)
48public override void Write(Utf8JsonWriter writer, IAssetsLogMessage value, JsonSerializerOptions options)
NuGet.Protocol (50)
_generated\39\PluginCacheJsonContext.IReadOnlyListOperationClaim.g.cs (1)
47private void IReadOnlyListOperationClaimSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::NuGet.Protocol.Plugins.OperationClaim>? value)
_generated\47\PluginJsonContext.CopyFilesInPackageRequest.g.cs (1)
163private void CopyFilesInPackageRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.CopyFilesInPackageRequest? value)
_generated\48\PluginJsonContext.CopyFilesInPackageResponse.g.cs (1)
98private void CopyFilesInPackageResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.CopyFilesInPackageResponse? value)
_generated\49\PluginJsonContext.CopyNupkgFileRequest.g.cs (1)
142private void CopyNupkgFileRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.CopyNupkgFileRequest? value)
_generated\50\PluginJsonContext.CopyNupkgFileResponse.g.cs (1)
78private void CopyNupkgFileResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.CopyNupkgFileResponse? value)
_generated\51\PluginJsonContext.Fault.g.cs (1)
79private void FaultSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.Fault? value)
_generated\52\PluginJsonContext.GetAuthenticationCredentialsRequest.g.cs (1)
139private void GetAuthenticationCredentialsRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsRequest? value)
_generated\53\PluginJsonContext.GetAuthenticationCredentialsResponse.g.cs (1)
158private void GetAuthenticationCredentialsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetAuthenticationCredentialsResponse? value)
_generated\54\PluginJsonContext.GetCredentialsRequest.g.cs (1)
99private void GetCredentialsRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetCredentialsRequest? value)
_generated\55\PluginJsonContext.GetCredentialsResponse.g.cs (1)
138private void GetCredentialsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetCredentialsResponse? value)
_generated\56\PluginJsonContext.GetFilesInPackageRequest.g.cs (1)
121private void GetFilesInPackageRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetFilesInPackageRequest? value)
_generated\57\PluginJsonContext.GetFilesInPackageResponse.g.cs (1)
98private void GetFilesInPackageResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetFilesInPackageResponse? value)
_generated\59\PluginJsonContext.GetOperationClaimsResponse.g.cs (1)
79private void GetOperationClaimsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetOperationClaimsResponse? value)
_generated\60\PluginJsonContext.GetPackageHashRequest.g.cs (1)
142private void GetPackageHashRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetPackageHashRequest? value)
_generated\61\PluginJsonContext.GetPackageHashResponse.g.cs (1)
98private void GetPackageHashResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetPackageHashResponse? value)
_generated\62\PluginJsonContext.GetPackageVersionsRequest.g.cs (1)
100private void GetPackageVersionsRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetPackageVersionsRequest? value)
_generated\63\PluginJsonContext.GetPackageVersionsResponse.g.cs (1)
98private void GetPackageVersionsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetPackageVersionsResponse? value)
_generated\64\PluginJsonContext.GetServiceIndexRequest.g.cs (1)
79private void GetServiceIndexRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.GetServiceIndexRequest? value)
_generated\68\PluginJsonContext.InitializeRequest.g.cs (1)
120private void InitializeRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.InitializeRequest? value)
_generated\69\PluginJsonContext.InitializeResponse.g.cs (1)
78private void InitializeResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.InitializeResponse? value)
_generated\70\PluginJsonContext.LogRequest.g.cs (1)
99private void LogRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.LogRequest? value)
_generated\71\PluginJsonContext.LogResponse.g.cs (1)
78private void LogResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.LogResponse? value)
_generated\74\PluginJsonContext.MonitorNuGetProcessExitRequest.g.cs (1)
78private void MonitorNuGetProcessExitRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.MonitorNuGetProcessExitRequest? value)
_generated\75\PluginJsonContext.MonitorNuGetProcessExitResponse.g.cs (1)
78private void MonitorNuGetProcessExitResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.MonitorNuGetProcessExitResponse? value)
_generated\77\PluginJsonContext.PrefetchPackageRequest.g.cs (1)
121private void PrefetchPackageRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.PrefetchPackageRequest? value)
_generated\78\PluginJsonContext.PrefetchPackageResponse.g.cs (1)
78private void PrefetchPackageResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.PrefetchPackageResponse? value)
_generated\79\PluginJsonContext.Progress.g.cs (1)
78private void ProgressSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.Progress? value)
_generated\80\PluginJsonContext.SetCredentialsRequest.g.cs (1)
159private void SetCredentialsRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.SetCredentialsRequest? value)
_generated\81\PluginJsonContext.SetCredentialsResponse.g.cs (1)
78private void SetCredentialsResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.SetCredentialsResponse? value)
_generated\82\PluginJsonContext.SetLogLevelRequest.g.cs (1)
78private void SetLogLevelRequestSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.SetLogLevelRequest? value)
_generated\83\PluginJsonContext.SetLogLevelResponse.g.cs (1)
78private void SetLogLevelResponseSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Protocol.Plugins.SetLogLevelResponse? value)
_generated\84\PluginJsonContext.SemanticVersion.g.cs (1)
220private void SemanticVersionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::NuGet.Versioning.SemanticVersion? value)
_generated\85\PluginJsonContext.IEnumerableString.g.cs (1)
47private void IEnumerableStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IEnumerable<string>? value)
_generated\86\PluginJsonContext.IListString.g.cs (1)
47private void IListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IList<string>? value)
_generated\87\PluginJsonContext.IReadOnlyListOperationClaim.g.cs (1)
47private void IReadOnlyListOperationClaimSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<global::NuGet.Protocol.Plugins.OperationClaim>? value)
_generated\88\PluginJsonContext.IReadOnlyListString.g.cs (1)
47private void IReadOnlyListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.IReadOnlyList<string>? value)
Converters\FingerprintsStjConverter.cs (1)
34public override void Write(Utf8JsonWriter writer, Fingerprints value, JsonSerializerOptions options)
Converters\MetadataFieldStjConverter.cs (1)
61public override void Write(Utf8JsonWriter writer, string value, JsonSerializerOptions options)
Converters\MetadataStringOrArrayStjConverter.cs (1)
74public override void Write(Utf8JsonWriter writer, IReadOnlyList<string> value, JsonSerializerOptions options)
Converters\NuGetFrameworkStjConverter.cs (1)
34public override void Write(Utf8JsonWriter writer, NuGetFramework value, JsonSerializerOptions options)
Converters\NuGetVersionStjConverter.cs (1)
30public override void Write(Utf8JsonWriter writer, NuGetVersion value, JsonSerializerOptions options)
Converters\PackageDependencyGroupStjConverter.cs (1)
80public override void Write(Utf8JsonWriter writer, PackageDependencyGroup value, JsonSerializerOptions options)
Converters\SafeBoolStjConverter.cs (1)
35public override void Write(Utf8JsonWriter writer, bool value, JsonSerializerOptions options)
Converters\SafeUriStjConverter.cs (1)
29public override void Write(Utf8JsonWriter writer, Uri value, JsonSerializerOptions options)
Converters\ServiceIndexEntryStringOrArrayConverter.cs (1)
49public override void Write(Utf8JsonWriter writer, string[] value, JsonSerializerOptions options)
Converters\VersionRangeStjConverter.cs (1)
27public override void Write(Utf8JsonWriter writer, VersionRange value, JsonSerializerOptions options)
Plugins\MessageConverter.cs (2)
65private static readonly Dictionary<Type, Action<Utf8JsonWriter, object>> _write = new() 170public override void Write(Utf8JsonWriter writer, Message value, JsonSerializerOptions options)
Plugins\RawJsonStringConverter.cs (1)
29public override void Write(Utf8JsonWriter writer, string value, JsonSerializerOptions options)
Plugins\StjSemanticVersionConverter.cs (1)
30public override void Write(Utf8JsonWriter writer, SemanticVersion value, JsonSerializerOptions options)
rzc (4)
Json\JsonDataWriter.cs (3)
14/// wraps a <see cref="Utf8JsonWriter"/> from System.Text.Json. 16internal readonly ref struct JsonDataWriter(Utf8JsonWriter writer) 18private readonly Utf8JsonWriter _writer = writer;
Json\ObjectJsonConverter`1.cs (1)
30public sealed override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
sdk-tasks (3)
_generated\0\SdkTasksJsonSerializerContext.MetadataEntry.g.cs (1)
100private void MetadataEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.DotNet.Build.Tasks.ProcessRuntimeAnalyzerVersions.MetadataEntry? value)
_generated\1\SdkTasksJsonSerializerContext.DictionaryStringMetadataEntry.g.cs (1)
47private void DictionaryStringMetadataEntrySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.DotNet.Build.Tasks.ProcessRuntimeAnalyzerVersions.MetadataEntry>? value)
_generated\2\SdkTasksJsonSerializerContext.ListString.g.cs (1)
47private void ListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<string>? value)
Shared.Tests (52)
Generated\361d1da7f942c932\TestTypesContext.ClassWithComponentModelAttributes.g.cs (1)
99private void ClassWithComponentModelAttributesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.ClassWithComponentModelAttributes? value)
Generated\361d1da7f942c932\TestTypesContext.ClassWithPropertiesUsingCustomConverters.g.cs (1)
99private void ClassWithPropertiesUsingCustomConvertersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.ClassWithPropertiesUsingCustomConverters? value)
Generated\361d1da7f942c932\TestTypesContext.DerivedPocoIntDiscriminator.g.cs (1)
98private void DerivedPocoIntDiscriminatorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedPocoIntDiscriminator? value)
Generated\361d1da7f942c932\TestTypesContext.DerivedPocoNoDiscriminator.g.cs (1)
98private void DerivedPocoNoDiscriminatorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedPocoNoDiscriminator? value)
Generated\361d1da7f942c932\TestTypesContext.DerivedPocoStringDiscriminator.g.cs (1)
98private void DerivedPocoStringDiscriminatorSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedPocoStringDiscriminator? value)
Generated\361d1da7f942c932\TestTypesContext.DictionaryStringInt32.g.cs (1)
47private void DictionaryStringInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, int>? value)
Generated\361d1da7f942c932\TestTypesContext.DictionaryStringSimplePoco.g.cs (1)
47private void DictionaryStringSimplePocoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Dictionary<string, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimplePoco>? value)
Generated\361d1da7f942c932\TestTypesContext.GenericPocoWithNullableConstructorParameterString.g.cs (1)
79private void GenericPocoWithNullableConstructorParameterStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.GenericPocoWithNullableConstructorParameter<string>? value)
Generated\361d1da7f942c932\TestTypesContext.ImmutableQueueBoolean.g.cs (1)
47private void ImmutableQueueBooleanSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableQueue<bool>? value)
Generated\361d1da7f942c932\TestTypesContext.PocoCombiningPolymorphicTypeAndDerivedTypes.g.cs (1)
124private void PocoCombiningPolymorphicTypeAndDerivedTypesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoCombiningPolymorphicTypeAndDerivedTypes? value)
Generated\361d1da7f942c932\TestTypesContext.PocoDisallowingUnmappedMembers.g.cs (1)
100private void PocoDisallowingUnmappedMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoDisallowingUnmappedMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithCustomNumberHandling.g.cs (1)
78private void PocoWithCustomNumberHandlingSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithCustomNumberHandling? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithIgnoredMembers.g.cs (1)
98private void PocoWithIgnoredMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithIgnoredMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNonRecursiveDuplicateOccurrences.g.cs (1)
138private void PocoWithNonRecursiveDuplicateOccurrencesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNonRecursiveDuplicateOccurrences? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableAnnotationAttributes.g.cs (1)
164private void PocoWithNullableAnnotationAttributesSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableAnnotationAttributes? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableAnnotationAttributesOnConstructorParams.g.cs (1)
100private void PocoWithNullableAnnotationAttributesOnConstructorParamsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableAnnotationAttributesOnConstructorParams? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableConstructorParameter.g.cs (1)
79private void PocoWithNullableConstructorParameterSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableConstructorParameter? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithNullableStructFollowedByStruct.g.cs (1)
98private void PocoWithNullableStructFollowedByStructSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithNullableStructFollowedByStruct? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithOptionalConstructorParams.g.cs (1)
259private void PocoWithOptionalConstructorParamsSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithOptionalConstructorParams? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithRecursiveMembers.g.cs (1)
98private void PocoWithRecursiveMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithRecursiveMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithRequiredMembers.g.cs (1)
125private void PocoWithRequiredMembersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithRequiredMembers? value)
Generated\361d1da7f942c932\TestTypesContext.PocoWithStructFollowedByNullableStruct.g.cs (1)
98private void PocoWithStructFollowedByNullableStructSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithStructFollowedByNullableStruct? value)
Generated\361d1da7f942c932\TestTypesContext.RecordWithOptionalParameters.g.cs (1)
262private void RecordWithOptionalParametersSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.RecordWithOptionalParameters? value)
Generated\361d1da7f942c932\TestTypesContext.StructDictionaryStringInt32.g.cs (1)
47private void StructDictionaryStringInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.StructDictionary<string, int> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.Derived.g.cs (1)
58private void DerivedSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.NonAbstractClassWithSingleDerivedType.Derived? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.DerivedCollection.g.cs (1)
47private void DerivedCollectionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedCollection? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.DerivedDictionary.g.cs (1)
47private void DerivedDictionarySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithPolymorphism.DerivedDictionary? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.HashSetString.g.cs (1)
47private void HashSetStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.HashSet<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ImmutableArrayInt32.g.cs (1)
47private void ImmutableArrayInt32SerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableArray<int> value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ImmutableListString.g.cs (1)
47private void ImmutableListStringSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Immutable.ImmutableList<string>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.Int32Array.g.cs (1)
47private void Int32ArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, int[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ListBoolean.g.cs (1)
47private void ListBooleanSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<bool>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.ListSimpleRecord.g.cs (1)
47private void ListSimpleRecordSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.List<global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecord>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.PocoWithCustomNaming.g.cs (1)
98private void PocoWithCustomNamingSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithCustomNaming? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.PocoWithDescription.g.cs (1)
78private void PocoWithDescriptionSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.PocoWithDescription? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.QueueDouble.g.cs (1)
47private void QueueDoubleSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Queue<double>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimplePoco.g.cs (1)
160private void SimplePocoSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimplePoco? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimpleRecord.g.cs (1)
140private void SimpleRecordSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecord? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimpleRecordArray.g.cs (1)
47private void SimpleRecordArraySerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecord[]? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.SimpleRecordStruct.g.cs (1)
140private void SimpleRecordStructSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.Extensions.AI.JsonSchemaExporter.TestTypes.SimpleRecordStruct value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.StackChar.g.cs (1)
47private void StackCharSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Collections.Generic.Stack<char>? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XAttribute.g.cs (1)
262private void XAttributeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XAttribute? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XDeclaration.g.cs (1)
118private void XDeclarationSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XDeclaration? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XDocument.g.cs (1)
299private void XDocumentSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XDocument? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XDocumentType.g.cs (1)
281private void XDocumentTypeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XDocumentType? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XElement.g.cs (1)
383private void XElementSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XElement? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XName.g.cs (1)
121private void XNameSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XName? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XNamespace.g.cs (1)
79private void XNamespaceSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XNamespace? value)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TestTypesContext.XNode.g.cs (1)
179private void XNodeSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::System.Xml.Linq.XNode? value)
JsonSchemaExporter\TestTypes.cs (3)
975public override void Write(Utf8JsonWriter writer, PocoWithCustomConverter value, JsonSerializerOptions options) => 990public override void Write(Utf8JsonWriter writer, int value, JsonSerializerOptions options) 1205public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
System.Memory.Data (1)
System\BinaryDataConverter.cs (1)
24public override void Write(Utf8JsonWriter writer, BinaryData value, JsonSerializerOptions options)
System.Text.Json (266)
System\Text\Json\Document\JsonDocument.cs (6)
104public void WriteTo(Utf8JsonWriter writer) 731Utf8JsonWriter writer) 767private void WriteComplexElement(int index, Utf8JsonWriter writer) 842internal void WritePropertyName(int index, Utf8JsonWriter writer) 851private void WritePropertyName(in DbRow row, Utf8JsonWriter writer) 865private void WriteString(in DbRow row, Utf8JsonWriter writer)
System\Text\Json\Document\JsonElement.cs (2)
1546public void WriteTo(Utf8JsonWriter writer) 1555internal void WritePropertyNameTo(Utf8JsonWriter writer)
System\Text\Json\Document\JsonProperty.cs (1)
115public void WriteTo(Utf8JsonWriter writer)
System\Text\Json\Nodes\JsonArray.cs (1)
264public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null)
System\Text\Json\Nodes\JsonNode.To.cs (5)
23Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(writerOptions, defaultBufferSize, out PooledByteBufferWriter output); 56Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(new JsonWriterOptions { Indented = true }, JsonSerializerOptions.BufferSizeDefault, out PooledByteBufferWriter output); 70/// Write the <see cref="JsonNode"/> into the provided <see cref="Utf8JsonWriter"/> as JSON. 72/// <param name="writer">The <see cref="Utf8JsonWriter"/>.</param> 77public abstract void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null);
System\Text\Json\Nodes\JsonObject.cs (2)
149public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null) 173internal void WriteContentsTo(Utf8JsonWriter writer, JsonSerializerOptions? options)
System\Text\Json\Nodes\JsonValue.cs (1)
134Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(
System\Text\Json\Nodes\JsonValueOfElement.cs (1)
197public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null)
System\Text\Json\Nodes\JsonValueOfJsonPrimitive.cs (3)
49public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null) 136public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null) => writer.WriteBooleanValue(_value); 311public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null)
System\Text\Json\Nodes\JsonValueOfTCustomized.cs (2)
29public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null) 49Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(options: default, JsonSerializerOptions.BufferSizeDefault, out PooledByteBufferWriter output);
System\Text\Json\Nodes\JsonValueOfTPrimitive.cs (1)
42public override void WriteTo(Utf8JsonWriter writer, JsonSerializerOptions? options = null)
System\Text\Json\Serialization\Converters\CastingConverter.cs (5)
47public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options) 57internal override bool OnTryWrite(Utf8JsonWriter writer, T value, JsonSerializerOptions options, ref WriteStack state) 92public override void WriteAsPropertyName(Utf8JsonWriter writer, [DisallowNull] T value, JsonSerializerOptions options) 109internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, T value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 129internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, T? value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Collection\ArrayConverter.cs (1)
34protected override bool OnWriteResume(Utf8JsonWriter writer, TElement[] array, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\DictionaryDefaultConverter.cs (1)
22Utf8JsonWriter writer,
System\Text\Json\Serialization\Converters\Collection\DictionaryOfTKeyTValueConverter.cs (1)
38Utf8JsonWriter writer,
System\Text\Json\Serialization\Converters\Collection\IAsyncEnumerableOfTConverter.cs (2)
36internal override bool OnTryWrite(Utf8JsonWriter writer, TAsyncEnumerable value, JsonSerializerOptions options, ref WriteStack state) 47protected override bool OnWriteResume(Utf8JsonWriter writer, TAsyncEnumerable value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\IDictionaryConverter.cs (1)
49protected internal override bool OnWriteResume(Utf8JsonWriter writer, TDictionary value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\IEnumerableConverter.cs (1)
40Utf8JsonWriter writer,
System\Text\Json\Serialization\Converters\Collection\IEnumerableDefaultConverter.cs (1)
17protected override bool OnWriteResume(Utf8JsonWriter writer, TCollection value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\IListConverter.cs (1)
39protected override bool OnWriteResume(Utf8JsonWriter writer, TCollection value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\JsonCollectionConverter.cs (2)
293Utf8JsonWriter writer, 347protected abstract bool OnWriteResume(Utf8JsonWriter writer, TCollection value, JsonSerializerOptions options, ref WriteStack state);
System\Text\Json\Serialization\Converters\Collection\JsonDictionaryConverter.cs (2)
19protected internal abstract bool OnWriteResume(Utf8JsonWriter writer, TDictionary dictionary, JsonSerializerOptions options, ref WriteStack state); 336Utf8JsonWriter writer,
System\Text\Json\Serialization\Converters\Collection\ListOfTConverter.cs (1)
36protected override bool OnWriteResume(Utf8JsonWriter writer, TCollection value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\MemoryConverter.cs (1)
47protected override bool OnWriteResume(Utf8JsonWriter writer, Memory<T> value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\ReadOnlyMemoryConverter.cs (2)
47protected override bool OnWriteResume(Utf8JsonWriter writer, ReadOnlyMemory<T> value, JsonSerializerOptions options, ref WriteStack state) 52internal static bool OnWriteResume(Utf8JsonWriter writer, ReadOnlySpan<T> value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Collection\StackOrQueueConverter.cs (1)
43protected sealed override bool OnWriteResume(Utf8JsonWriter writer, TCollection value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\FSharp\FSharpOptionConverter.cs (2)
53internal override bool OnTryWrite(Utf8JsonWriter writer, TOption value, JsonSerializerOptions options, ref WriteStack state) 70public override void Write(Utf8JsonWriter writer, TOption value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\FSharp\FSharpUnionConverter.cs (2)
390public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options) 410internal override bool OnTryWrite(Utf8JsonWriter writer, T value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\FSharp\FSharpValueOptionConverter.cs (2)
53internal override bool OnTryWrite(Utf8JsonWriter writer, TValueOption value, JsonSerializerOptions options, ref WriteStack state) 71public override void Write(Utf8JsonWriter writer, TValueOption value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\JsonMetadataServicesConverter.cs (1)
51internal override bool OnTryWrite(Utf8JsonWriter writer, T value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Node\JsonArrayConverter.cs (1)
12public override void Write(Utf8JsonWriter writer, JsonArray? value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Node\JsonNodeConverter.cs (1)
18public override void Write(Utf8JsonWriter writer, JsonNode? value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Node\JsonObjectConverter.cs (2)
44internal override void WriteExtensionDataValue(Utf8JsonWriter writer, JsonObject? value, JsonSerializerOptions options) 50public override void Write(Utf8JsonWriter writer, JsonObject? value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Node\JsonValueConverter.cs (1)
12public override void Write(Utf8JsonWriter writer, JsonValue? value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Object\ObjectConverter.cs (3)
32public sealed override void Write(Utf8JsonWriter writer, object? value, JsonSerializerOptions options) 44public sealed override void WriteAsPropertyName(Utf8JsonWriter writer, object value, JsonSerializerOptions options) 49internal sealed override void WriteAsPropertyNameCore(Utf8JsonWriter writer, object value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Object\ObjectDefaultConverter.cs (1)
323Utf8JsonWriter writer,
System\Text\Json\Serialization\Converters\Union\JsonUnionConverter.cs (1)
150internal override bool OnTryWrite(Utf8JsonWriter writer, TUnion value, JsonSerializerOptions options, ref WriteStack state)
System\Text\Json\Serialization\Converters\Value\BooleanConverter.cs (2)
18public override void Write(Utf8JsonWriter writer, bool value, JsonSerializerOptions options) 36internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, bool value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\ByteArrayConverter.cs (1)
20public override void Write(Utf8JsonWriter writer, byte[]? value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Value\ByteConverter.cs (3)
27public override void Write(Utf8JsonWriter writer, byte value, JsonSerializerOptions options) 44internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, byte value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 59internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, byte value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\CharConverter.cs (2)
36public override void Write(Utf8JsonWriter writer, char value, JsonSerializerOptions options) 53internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, char value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\DateOnlyConverter.cs (2)
65public override unsafe void Write(Utf8JsonWriter writer, DateOnly value, JsonSerializerOptions options) 73internal override unsafe void WriteAsPropertyNameCore(Utf8JsonWriter writer, DateOnly value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\DateTimeConverter.cs (2)
16public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options) 27internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\DateTimeOffsetConverter.cs (2)
16public override void Write(Utf8JsonWriter writer, DateTimeOffset value, JsonSerializerOptions options) 27internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, DateTimeOffset value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\DecimalConverter.cs (3)
26public override void Write(Utf8JsonWriter writer, decimal value, JsonSerializerOptions options) 43internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, decimal value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 59internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, decimal value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\DoubleConverter.cs (3)
29public override void Write(Utf8JsonWriter writer, double value, JsonSerializerOptions options) 46internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, double value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 68internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, double value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\EnumConverter.cs (2)
132public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options) 194internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, T value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\GuidConverter.cs (2)
17public override void Write(Utf8JsonWriter writer, Guid value, JsonSerializerOptions options) 28internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, Guid value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\HalfConverter.cs (5)
39public override void Write(Utf8JsonWriter writer, Half value, JsonSerializerOptions options) 79private static unsafe void WriteCore(Utf8JsonWriter writer, Half value) 92internal override unsafe void WriteAsPropertyNameCore(Utf8JsonWriter writer, Half value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 131internal override unsafe void WriteNumberWithCustomHandling(Utf8JsonWriter writer, Half value, JsonNumberHandling handling) 197private static void WriteFloatingPointConstant(Utf8JsonWriter writer, Half value)
System\Text\Json\Serialization\Converters\Value\Ieee754FloatingPointConverter.cs (5)
52public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options) 69internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, T value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 111internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, T value, JsonNumberHandling handling) 164private static void WriteCore(Utf8JsonWriter writer, T value) 185private static void WriteFloatingPointConstant(Utf8JsonWriter writer, T value)
System\Text\Json\Serialization\Converters\Value\Int128Converter.cs (4)
36public override void Write(Utf8JsonWriter writer, Int128 value, JsonSerializerOptions options) 70private static unsafe void WriteCore(Utf8JsonWriter writer, Int128 value) 83internal override unsafe void WriteAsPropertyNameCore(Utf8JsonWriter writer, Int128 value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 106internal override unsafe void WriteNumberWithCustomHandling(Utf8JsonWriter writer, Int128 value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\Int16Converter.cs (3)
27public override void Write(Utf8JsonWriter writer, short value, JsonSerializerOptions options) 45internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, short value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 61internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, short value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\Int32Converter.cs (3)
27public override void Write(Utf8JsonWriter writer, int value, JsonSerializerOptions options) 45internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, int value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 61internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, int value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\Int64Converter.cs (3)
27public override void Write(Utf8JsonWriter writer, long value, JsonSerializerOptions options) 44internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, long value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 60internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, long value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\JsonDocumentConverter.cs (1)
16public override void Write(Utf8JsonWriter writer, JsonDocument? value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Value\JsonElementConverter.cs (1)
16public override void Write(Utf8JsonWriter writer, JsonElement value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Value\JsonPrimitiveConverter.cs (1)
16public sealed override void WriteAsPropertyName(Utf8JsonWriter writer, [DisallowNull] T value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Value\MemoryByteConverter.cs (1)
18public override void Write(Utf8JsonWriter writer, Memory<byte> value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Value\NullableConverter.cs (3)
52internal override bool OnTryWrite(Utf8JsonWriter writer, T? value, JsonSerializerOptions options, ref WriteStack state) 75public override void Write(Utf8JsonWriter writer, T? value, JsonSerializerOptions options) 98internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, T? value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\ReadOnlyMemoryByteConverter.cs (1)
18public override void Write(Utf8JsonWriter writer, ReadOnlyMemory<byte> value, JsonSerializerOptions options)
System\Text\Json\Serialization\Converters\Value\SByteConverter.cs (3)
27public override void Write(Utf8JsonWriter writer, sbyte value, JsonSerializerOptions options) 44internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, sbyte value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 60internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, sbyte value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\SingleConverter.cs (3)
30public override void Write(Utf8JsonWriter writer, float value, JsonSerializerOptions options) 47internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, float value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 69internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, float value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\StringConverter.cs (2)
17public override void Write(Utf8JsonWriter writer, string? value, JsonSerializerOptions options) 36internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, string value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\TimeOnlyConverter.cs (2)
79public override unsafe void Write(Utf8JsonWriter writer, TimeOnly value, JsonSerializerOptions options) 89internal override unsafe void WriteAsPropertyNameCore(Utf8JsonWriter writer, TimeOnly value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\TimeSpanConverter.cs (2)
77public override unsafe void Write(Utf8JsonWriter writer, TimeSpan value, JsonSerializerOptions options) 87internal override unsafe void WriteAsPropertyNameCore(Utf8JsonWriter writer, TimeSpan value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\UInt128Converter.cs (4)
36public override void Write(Utf8JsonWriter writer, UInt128 value, JsonSerializerOptions options) 70private static unsafe void WriteCore(Utf8JsonWriter writer, UInt128 value) 83internal override unsafe void WriteAsPropertyNameCore(Utf8JsonWriter writer, UInt128 value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 106internal override unsafe void WriteNumberWithCustomHandling(Utf8JsonWriter writer, UInt128 value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\UInt16Converter.cs (3)
27public override void Write(Utf8JsonWriter writer, ushort value, JsonSerializerOptions options) 45internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, ushort value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 61internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, ushort value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\UInt32Converter.cs (3)
27public override void Write(Utf8JsonWriter writer, uint value, JsonSerializerOptions options) 45internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, uint value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 61internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, uint value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\UInt64Converter.cs (3)
27public override void Write(Utf8JsonWriter writer, ulong value, JsonSerializerOptions options) 44internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, ulong value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 60internal override void WriteNumberWithCustomHandling(Utf8JsonWriter writer, ulong value, JsonNumberHandling handling)
System\Text\Json\Serialization\Converters\Value\UnsupportedTypeConverter.cs (1)
20public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options) =>
System\Text\Json\Serialization\Converters\Value\UriConverter.cs (2)
17public override void Write(Utf8JsonWriter writer, Uri? value, JsonSerializerOptions options) 46internal override void WriteAsPropertyNameCore(Utf8JsonWriter writer, Uri value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\Converters\Value\VersionConverter.cs (2)
99public override unsafe void Write(Utf8JsonWriter writer, Version? value, JsonSerializerOptions options) 122internal override unsafe void WriteAsPropertyNameCore(Utf8JsonWriter writer, Version value, JsonSerializerOptions options, bool isWritingExtensionDataProperty)
System\Text\Json\Serialization\JsonConverter.cs (7)
200internal static bool ShouldFlush(ref WriteStack state, Utf8JsonWriter writer) 220internal abstract void WriteAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options); 221internal abstract bool OnTryWriteAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options, ref WriteStack state); 222internal abstract bool TryWriteAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options, ref WriteStack state); 223internal abstract void WriteAsPropertyNameAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options); 224internal abstract void WriteAsPropertyNameCoreAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options, bool isWritingExtensionDataProperty); 225internal abstract void WriteNumberWithCustomHandlingAsObject(Utf8JsonWriter writer, object? value, JsonNumberHandling handling);
System\Text\Json\Serialization\JsonConverter.MetadataHandling.cs (1)
152internal bool TryHandleSerializedObjectReference(Utf8JsonWriter writer, object value, JsonSerializerOptions options, JsonConverter? polymorphicConverter, ref WriteStack state)
System\Text\Json\Serialization\JsonConverterFactory.cs (6)
105internal sealed override void WriteAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options) 113Utf8JsonWriter writer, 124Utf8JsonWriter writer, 134internal sealed override void WriteAsPropertyNameAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options) 145Utf8JsonWriter writer, 155internal sealed override void WriteNumberWithCustomHandlingAsObject(Utf8JsonWriter writer, object? value, JsonNumberHandling handling)
System\Text\Json\Serialization\JsonConverterOfT.cs (17)
77internal sealed override void WriteAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options) 84internal sealed override bool OnTryWriteAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options, ref WriteStack state) 91internal sealed override void WriteAsPropertyNameAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options) 97internal sealed override void WriteAsPropertyNameCoreAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 103internal sealed override void WriteNumberWithCustomHandlingAsObject(Utf8JsonWriter writer, object? value, JsonNumberHandling handling) 110internal sealed override bool TryWriteAsObject(Utf8JsonWriter writer, object? value, JsonSerializerOptions options, ref WriteStack state) 117internal virtual bool OnTryWrite(Utf8JsonWriter writer, 327internal bool TryWrite(Utf8JsonWriter writer, in T? value, JsonSerializerOptions options, ref WriteStack state) 445internal bool TryWriteDataExtensionProperty(Utf8JsonWriter writer, T value, JsonSerializerOptions options, ref WriteStack state) 505internal virtual void WriteExtensionDataValue(Utf8JsonWriter writer, T value, JsonSerializerOptions options) 574internal void VerifyWrite(int originalDepth, Utf8JsonWriter writer) 589/// <param name="writer">The <see cref="Utf8JsonWriter"/> to write to.</param> 593Utf8JsonWriter writer, 636/// <param name="writer">The <see cref="Utf8JsonWriter"/> to write to.</param> 640public virtual void WriteAsPropertyName(Utf8JsonWriter writer, [DisallowNull] T value, JsonSerializerOptions options) 652internal virtual void WriteAsPropertyNameCore(Utf8JsonWriter writer, [DisallowNull] T value, JsonSerializerOptions options, bool isWritingExtensionDataProperty) 699internal virtual void WriteNumberWithCustomHandling(Utf8JsonWriter writer, T? value, JsonNumberHandling handling)
System\Text\Json\Serialization\JsonConverterOfT.WriteCore.cs (1)
9Utf8JsonWriter writer,
System\Text\Json\Serialization\JsonResumableConverterOfT.cs (1)
31public sealed override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options)
System\Text\Json\Serialization\JsonSerializer.Read.Node.cs (2)
145using (var writer = new Utf8JsonWriter(output, options.GetWriterOptions())) 166using (var writer = new Utf8JsonWriter(output, options.GetWriterOptions()))
System\Text\Json\Serialization\JsonSerializer.Write.ByteArray.cs (2)
133Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output); 150Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output);
System\Text\Json\Serialization\JsonSerializer.Write.Document.cs (2)
130Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriter(options, output); 151Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriter(options, output);
System\Text\Json\Serialization\JsonSerializer.Write.Element.cs (2)
128Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output); 146Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output);
System\Text\Json\Serialization\JsonSerializer.Write.HandleMetadata.cs (3)
20Utf8JsonWriter writer) 65Utf8JsonWriter writer) 77internal static bool TryGetReferenceForValue(object currentValue, ref WriteStack state, Utf8JsonWriter writer)
System\Text\Json\Serialization\JsonSerializer.Write.Node.cs (2)
129Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output); 147Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output);
System\Text\Json\Serialization\JsonSerializer.Write.Pipe.cs (1)
266var writer = new Utf8JsonWriter(utf8Json, writerOptions);
System\Text\Json\Serialization\JsonSerializer.Write.Stream.cs (1)
410var writer = new Utf8JsonWriter(bufferWriter, writerOptions);
System\Text\Json\Serialization\JsonSerializer.Write.String.cs (2)
150Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output); 167Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(jsonTypeInfo.Options, out PooledByteBufferWriter output);
System\Text\Json\Serialization\JsonSerializer.Write.Utf8JsonWriter.cs (5)
29Utf8JsonWriter writer, 59Utf8JsonWriter writer, 81public static void Serialize<TValue>(Utf8JsonWriter writer, TValue value, JsonTypeInfo<TValue> jsonTypeInfo) 102public static void Serialize(Utf8JsonWriter writer, object? value, JsonTypeInfo jsonTypeInfo) 132public static void Serialize(Utf8JsonWriter writer, object? value, Type inputType, JsonSerializerContext context)
System\Text\Json\Serialization\Metadata\JsonCollectionInfoValuesOfTCollection.cs (1)
50public Action<Utf8JsonWriter, TCollection>? SerializeHandler { get; init; }
System\Text\Json\Serialization\Metadata\JsonObjectInfoValuesOfT.cs (1)
62public Action<Utf8JsonWriter, T>? SerializeHandler { get; init; }
System\Text\Json\Serialization\Metadata\JsonPropertyInfo.cs (2)
742internal abstract bool GetMemberAndWriteJson(object obj, ref WriteStack state, Utf8JsonWriter writer); 743internal abstract bool GetMemberAndWriteJsonExtensionData(object obj, ref WriteStack state, Utf8JsonWriter writer);
System\Text\Json\Serialization\Metadata\JsonPropertyInfoOfT.cs (2)
171internal override bool GetMemberAndWriteJson(object obj, ref WriteStack state, Utf8JsonWriter writer) 251internal override bool GetMemberAndWriteJsonExtensionData(object obj, ref WriteStack state, Utf8JsonWriter writer)
System\Text\Json\Serialization\Metadata\JsonTypeInfo.cs (1)
1476internal abstract void SerializeAsObject(Utf8JsonWriter writer, object? rootValue);
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.cs (2)
15private Action<Utf8JsonWriter, T>? _serialize; 235public Action<Utf8JsonWriter, T>? SerializeHandler
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.WriteHelpers.cs (6)
20Utf8JsonWriter writer, 103Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriter(Options, pipeWriter); 162var writer = new Utf8JsonWriter(pipeWriter, Options.GetWriterOptions()); 263Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(Options, out PooledByteBufferWriter bufferWriter); 299Utf8JsonWriter writer = Utf8JsonWriterCache.RentWriterAndBuffer(Options, out PooledByteBufferWriter bufferWriter); 334internal sealed override void SerializeAsObject(Utf8JsonWriter writer, object? rootValue)
System\Text\Json\ThrowHelper.cs (2)
7using static System.Text.Json.Utf8JsonWriter; 700throw new ObjectDisposedException(nameof(Utf8JsonWriter));
System\Text\Json\Writer\JsonWriterOptions.cs (6)
10/// using the <see cref="Utf8JsonWriter"/>. By default, the JSON is written without 11/// any indentation or extra white space. Also, the <see cref="Utf8JsonWriter"/> will 29/// Defines whether the <see cref="Utf8JsonWriter"/> should pretty print the JSON which includes: 49/// Defines the indentation character used by <see cref="Utf8JsonWriter"/> when <see cref="Indented"/> is enabled. Defaults to the space character. 67/// Defines the indentation size used by <see cref="Utf8JsonWriter"/> when <see cref="Indented"/> is enabled. Defaults to two. 114/// Defines whether the <see cref="Utf8JsonWriter"/> should skip structural validation and allow
System\Text\Json\Writer\Utf8JsonWriter.cs (29)
87/// Returns the amount of bytes written by the <see cref="Utf8JsonWriter"/> so far 93/// Returns the amount of bytes committed to the output by the <see cref="Utf8JsonWriter"/> so far. 103/// the <see cref="Utf8JsonWriter"/> which indicates whether to format the output 208/// Constructs a new <see cref="Utf8JsonWriter"/> instance with a specified <paramref name="bufferWriter"/>. 211/// <param name="options">Defines the customized behavior of the <see cref="Utf8JsonWriter"/> 212/// By default, the <see cref="Utf8JsonWriter"/> writes JSON minimized (that is, with no extra whitespace) 226/// Constructs a new <see cref="Utf8JsonWriter"/> instance with a specified <paramref name="utf8Json"/>. 229/// <param name="options">Defines the customized behavior of the <see cref="Utf8JsonWriter"/> 230/// By default, the <see cref="Utf8JsonWriter"/> writes JSON minimized (that is, with no extra whitespace) 264/// Resets the <see cref="Utf8JsonWriter"/> internal state so that it can be re-used. 267/// The <see cref="Utf8JsonWriter"/> will continue to use the original writer options 271/// The instance of <see cref="Utf8JsonWriter"/> has been disposed. 282/// Resets the <see cref="Utf8JsonWriter"/> internal state so that it can be re-used with the new instance of <see cref="Stream" />. 286/// The <see cref="Utf8JsonWriter"/> will continue to use the original writer options 296/// The instance of <see cref="Utf8JsonWriter"/> has been disposed. 327/// Resets the <see cref="Utf8JsonWriter"/> internal state so that it can be re-used with the new instance of <see cref="Stream" /> 331/// <param name="options">Defines the customized behavior of the <see cref="Utf8JsonWriter"/>.</param> 339/// The instance of <see cref="Utf8JsonWriter"/> has been disposed. 348/// Resets the <see cref="Utf8JsonWriter"/> internal state so that it can be re-used with the new instance of <see cref="IBufferWriter{Byte}" />. 352/// The <see cref="Utf8JsonWriter"/> will continue to use the original writer options 359/// The instance of <see cref="Utf8JsonWriter"/> has been disposed. 373/// Resets the <see cref="Utf8JsonWriter"/> internal state so that it can be re-used with the new instance of <see cref="IBufferWriter{Byte}" /> 377/// <param name="options">Defines the customized behavior of the <see cref="Utf8JsonWriter"/>.</param> 382/// The instance of <see cref="Utf8JsonWriter"/> has been disposed. 407internal static Utf8JsonWriter CreateEmptyInstanceForCaching() => new Utf8JsonWriter(); 446/// The instance of <see cref="Utf8JsonWriter"/> has been disposed. 494/// The <see cref="Utf8JsonWriter"/> instance cannot be re-used after disposing. 525/// The <see cref="Utf8JsonWriter"/> instance cannot be re-used after disposing. 555/// The instance of <see cref="Utf8JsonWriter"/> has been disposed.
System\Text\Json\Writer\Utf8JsonWriterCache.cs (9)
17public static Utf8JsonWriter RentWriterAndBuffer(JsonSerializerOptions options, out PooledByteBufferWriter bufferWriter) => 20public static Utf8JsonWriter RentWriterAndBuffer(JsonWriterOptions options, int defaultBufferSize, out PooledByteBufferWriter bufferWriter) 23Utf8JsonWriter writer; 44public static Utf8JsonWriter RentWriter(JsonSerializerOptions options, IBufferWriter<byte> bufferWriter) 47Utf8JsonWriter writer; 64public static void ReturnWriterAndBuffer(Utf8JsonWriter writer, PooledByteBufferWriter bufferWriter) 76public static void ReturnWriter(Utf8JsonWriter writer) 90public readonly Utf8JsonWriter Writer; 96Writer = Utf8JsonWriter.CreateEmptyInstanceForCaching();