-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCompressedJsonSerializer.cs
More file actions
25 lines (24 loc) · 1.03 KB
/
CompressedJsonSerializer.cs
File metadata and controls
25 lines (24 loc) · 1.03 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
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
namespace RapidField.SolidInstruments.Serialization
{
/// <summary>
/// Performs compressed JSON serialization and deserialization for a given type.
/// </summary>
/// <typeparam name="T">
/// The type of the serializable object.
/// </typeparam>
public sealed class CompressedJsonSerializer<T> : DynamicSerializer<T>
where T : class
{
/// <summary>
/// Initializes a new instance of the <see cref="CompressedJsonSerializer{T}" /> class.
/// </summary>
public CompressedJsonSerializer()
: base(SerializationFormat.CompressedJson)
{
return;
}
}
}