System.Memory.Data 11.0.0-preview.4.26230.115

About

System.Memory.Data introduces the BinaryData type, a lightweight abstraction for a byte payload. It makes it easy to convert between string, bytes, and stream.

This abstraction can simplify the API surface by exposing a single type instead of numerous overloads or properties. The BinaryData type handles data ownership efficiently, wrapping passed-in bytes when using byte[] or ReadOnlyMemory<byte> constructors or methods, and managing data as bytes when dealing with streams, strings, or rich model types serialized as JSON.

Key Features

  • Lightweight abstraction for byte payload via BinaryData type.
  • Convenient helper methods for common conversions among string, bytes, and stream.
  • Efficient data ownership handling.

How to Use

To/From String:

var data = new BinaryData("some data");

// ToString will decode the bytes using UTF-8
Console.WriteLine(data.ToString()); // prints "some data"

To/From Bytes:

byte[] bytes = Encoding.UTF8.GetBytes("some data");

// Create BinaryData using a constructor ...
BinaryData data = new BinaryData(bytes);

// Or using a static factory method.
data = BinaryData.FromBytes(bytes);

// There is an implicit cast defined for ReadOnlyMemory<byte>
ReadOnlyMemory<byte> rom = data;

// There is also an implicit cast defined for ReadOnlySpan<byte>
ReadOnlySpan<byte> ros = data;

// there is also a ToMemory method that gives access to the ReadOnlyMemory.
rom = data.ToMemory();

// and a ToArray method that converts into a byte array.
byte[] array = data.ToArray();

To/From stream:

var bytes = Encoding.UTF8.GetBytes("some data");
Stream stream = new MemoryStream(bytes);
var data = BinaryData.FromStream(stream);

// Calling ToStream will give back a stream that is backed by ReadOnlyMemory, so it is not writable.
stream = data.ToStream();
Console.WriteLine(stream.CanWrite); // prints false

BinaryData also can be used to integrate with ObjectSerializer. By default, the JsonObjectSerializer will be used, but any serializer deriving from ObjectSerializer can be used.

var model = new CustomModel
{
    A = "some text",
    B = 5,
    C = true
};

var data = BinaryData.FromObjectAsJson(model);
model = data.ToObjectFromJson<CustomModel>();

Main Types

The main types provided by this library are:

  • System.BinaryData

Additional Documentation

Feedback & Contributing

System.Memory.Data is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Memory.Data.

Packages Downloads
Azure.Core
This is the implementation of the Azure Client Pipeline
172
Azure.Core
This is the implementation of the Azure Client Pipeline
162
Azure.Core
This is the implementation of the Azure Client Pipeline
156
Azure.Core
This is the implementation of the Azure Client Pipeline
152
Azure.Core
This is the implementation of the Azure Client Pipeline
150
Azure.Core
This is the implementation of the Azure Client Pipeline
148
Azure.Core
This is the implementation of the Azure Client Pipeline
144
Azure.Core
This is the implementation of the Azure Client Pipeline
143
Azure.Core
This is the implementation of the Azure Client Pipeline
142
System.ClientModel
Contains building blocks for clients that call cloud services.
141
Azure.Core
This is the implementation of the Azure Client Pipeline
139
Azure.Core
This is the implementation of the Azure Client Pipeline
138
Azure.Core
This is the implementation of the Azure Client Pipeline
136
System.ClientModel
Contains building blocks for clients that call cloud services.
135
System.ClientModel
Contains building blocks for clients that call cloud services.
133
Azure.Core
This is the implementation of the Azure Client Pipeline
133
Azure.Core
This is the implementation of the Azure Client Pipeline
132

.NET 10.0

.NET 11.0

  • No dependencies.

.NET Framework 4.6.2

.NET Standard 2.0

Version Downloads Last updated
11.0.0-preview.4.26230.115 8 5/12/2026
11.0.0-preview.3.26207.106 11 5/4/2026
11.0.0-preview.2.26159.112 13 3/12/2026
11.0.0-preview.1.26104.118 12 2/11/2026
10.0.8 9 5/12/2026
10.0.7 11 5/4/2026
10.0.6 10 5/4/2026
10.0.5 11 3/16/2026
10.0.4 11 3/12/2026
10.0.3 17 2/11/2026
10.0.2 21 1/15/2026
10.0.1 28 12/11/2025
10.0.0 47 11/12/2025
10.0.0-rc.2.25502.107 59 10/16/2025
10.0.0-rc.1.25451.107 57 9/11/2025
10.0.0-preview.7.25380.108 56 8/14/2025
10.0.0-preview.6.25358.103 63 7/20/2025
10.0.0-preview.5.25277.114 65 6/8/2025
10.0.0-preview.4.25258.110 82 5/15/2025
10.0.0-preview.3.25171.5 82 4/11/2025
10.0.0-preview.2.25163.2 83 3/26/2025
10.0.0-preview.1.25080.5 79 2/27/2025
9.0.16 8 5/12/2026
9.0.15 10 5/3/2026
9.0.14 11 3/12/2026
9.0.13 16 2/11/2026
9.0.12 21 1/15/2026
9.0.11 40 11/11/2025
9.0.10 54 10/17/2025
9.0.9 69 9/11/2025
9.0.8 63 8/6/2025
9.0.7 78 7/14/2025
9.0.6 71 6/13/2025
9.0.5 90 5/16/2025
9.0.4 87 4/11/2025
9.0.3 92 3/13/2025
9.0.2 89 2/14/2025
9.0.1 103 1/28/2025
9.0.0 110 11/14/2024
9.0.0-rc.2.24473.5 102 10/22/2024
9.0.0-rc.1.24431.7 92 9/12/2024
9.0.0-preview.7.24405.7 110 8/19/2024
9.0.0-preview.6.24327.7 105 7/10/2024
9.0.0-preview.5.24306.7 121 6/20/2024
9.0.0-preview.4.24266.19 114 6/5/2024
9.0.0-preview.3.24172.9 108 5/7/2024
9.0.0-preview.2.24128.5 107 3/18/2024
9.0.0-preview.1.24080.9 108 2/28/2024
8.0.1 114 10/26/2024
8.0.0 123 11/16/2023
8.0.0-rc.2.23479.6 133 10/23/2023
8.0.0-rc.1.23419.4 117 9/15/2023
8.0.0-preview.7.23375.6 129 8/22/2023
8.0.0-preview.6.23329.7 124 8/4/2023
8.0.0-preview.5.23280.8 113 8/2/2023
8.0.0-preview.4.23259.5 120 5/20/2023
8.0.0-preview.3.23174.8 113 5/20/2023
8.0.0-preview.2.23128.3 117 5/20/2023
8.0.0-preview.1.23110.8 130 2/26/2023
7.0.0 131 12/7/2022
7.0.0-rc.2.22472.3 119 12/7/2022
7.0.0-rc.1.22426.10 120 9/15/2022
7.0.0-preview.7.22375.6 123 9/7/2022
7.0.0-preview.6.22324.4 117 9/19/2022
7.0.0-preview.5.22301.12 118 7/1/2022
7.0.0-preview.4.22229.4 118 7/1/2022
7.0.0-preview.3.22175.4 144 7/1/2022
7.0.0-preview.2.22152.2 117 7/1/2022
7.0.0-preview.1.22076.8 128 7/1/2022
6.0.2-mauipre.1.22102.15 126 7/1/2022
6.0.2-mauipre.1.22054.8 117 7/1/2022
6.0.1 104 11/14/2024
6.0.0 159 7/1/2022
6.0.0-rc.2.21480.5 116 7/1/2022
6.0.0-rc.1.21451.13 130 7/1/2022
6.0.0-preview.7.21377.19 119 7/1/2022
6.0.0-preview.6.21352.12 125 7/1/2022
6.0.0-preview.5.21301.5 122 7/1/2022
6.0.0-preview.4.21253.7 122 7/1/2022
6.0.0-preview.3.21201.4 127 7/1/2022
6.0.0-preview.2.21154.6 126 7/1/2022
6.0.0-preview.1.21102.12 117 7/1/2022
1.0.2 131 7/1/2022
1.0.1 140 7/1/2022
1.0.0 140 7/1/2022
1.0.0-beta.2 133 7/1/2022
1.0.0-beta.1 139 7/1/2022