JsonReaderData Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
JsonReaderData(Byte[]) |
Creates a new JsonReaderData object to read JSON from the given buffer. |
JsonReaderData(Stream) |
Creates a new JsonReaderData object to read JSON from the given stream. |
JsonReaderData(Byte[])
- Source:
- JsonReaderData.cs
- Source:
- JsonReaderData.cs
Creates a new JsonReaderData object to read JSON from the given buffer.
public JsonReaderData (byte[] buffer);
new Microsoft.EntityFrameworkCore.Storage.Json.JsonReaderData : byte[] -> Microsoft.EntityFrameworkCore.Storage.Json.JsonReaderData
Public Sub New (buffer As Byte())
Parameters
- buffer
- Byte[]
The buffer containing UTF8 JSON bytes.
Applies to
JsonReaderData(Stream)
- Source:
- JsonReaderData.cs
- Source:
- JsonReaderData.cs
Creates a new JsonReaderData object to read JSON from the given stream.
public JsonReaderData (System.IO.Stream stream);
new Microsoft.EntityFrameworkCore.Storage.Json.JsonReaderData : System.IO.Stream -> Microsoft.EntityFrameworkCore.Storage.Json.JsonReaderData
Public Sub New (stream As Stream)
Parameters
- stream
- Stream
The stream providing UTF8 JSON bytes.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework