forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocumentTranslateContent.Serialization.cs
More file actions
103 lines (88 loc) · 4.31 KB
/
DocumentTranslateContent.Serialization.cs
File metadata and controls
103 lines (88 loc) · 4.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.ClientModel.Primitives;
using System.IO;
using System.Text.Json;
using Azure.Core;
namespace Azure.AI.Translation.Document
{
public partial class DocumentTranslateContent : IUtf8JsonSerializable, IJsonModel<DocumentTranslateContent>
{
void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) => ((IJsonModel<DocumentTranslateContent>)this).Write(writer, ModelSerializationExtensions.WireOptions);
void IJsonModel<DocumentTranslateContent>.Write(Utf8JsonWriter writer, ModelReaderWriterOptions options)
{
writer.WriteStartObject();
JsonModelWriteCore(writer, options);
writer.WriteEndObject();
}
DocumentTranslateContent IJsonModel<DocumentTranslateContent>.Create(ref Utf8JsonReader reader, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<DocumentTranslateContent>)this).GetFormatFromOptions(options) : options.Format;
if (format != "J")
{
throw new FormatException($"The model {nameof(DocumentTranslateContent)} does not support reading '{format}' format.");
}
using JsonDocument document = JsonDocument.ParseValue(ref reader);
return DeserializeDocumentTranslateContent(document.RootElement, options);
}
private BinaryData SerializeMultipart(ModelReaderWriterOptions options)
{
using MultipartFormDataRequestContent content = ToMultipartRequestContent();
using MemoryStream stream = new MemoryStream();
content.WriteTo(stream);
if (stream.Position > int.MaxValue)
{
return BinaryData.FromStream(stream);
}
else
{
return new BinaryData(stream.GetBuffer().AsMemory(0, (int)stream.Position));
}
}
BinaryData IPersistableModel<DocumentTranslateContent>.Write(ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<DocumentTranslateContent>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
return ModelReaderWriter.Write(this, options);
case "MFD":
return SerializeMultipart(options);
default:
throw new FormatException($"The model {nameof(DocumentTranslateContent)} does not support writing '{options.Format}' format.");
}
}
DocumentTranslateContent IPersistableModel<DocumentTranslateContent>.Create(BinaryData data, ModelReaderWriterOptions options)
{
var format = options.Format == "W" ? ((IPersistableModel<DocumentTranslateContent>)this).GetFormatFromOptions(options) : options.Format;
switch (format)
{
case "J":
{
using JsonDocument document = JsonDocument.Parse(data);
return DeserializeDocumentTranslateContent(document.RootElement, options);
}
default:
throw new FormatException($"The model {nameof(DocumentTranslateContent)} does not support reading '{options.Format}' format.");
}
}
string IPersistableModel<DocumentTranslateContent>.GetFormatFromOptions(ModelReaderWriterOptions options) => "MFD";
/// <summary> Deserializes the model from a raw response. </summary>
/// <param name="response"> The response to deserialize the model from. </param>
internal static DocumentTranslateContent FromResponse(Response response)
{
using var document = JsonDocument.Parse(response.Content);
return DeserializeDocumentTranslateContent(document.RootElement);
}
/// <summary> Convert into a <see cref="RequestContent"/>. </summary>
internal virtual RequestContent ToRequestContent()
{
var content = new Utf8JsonRequestContent();
content.JsonWriter.WriteObjectValue(this, ModelSerializationExtensions.WireOptions);
return content;
}
}
}