BinaryDataJsonConverter.Read Method
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.
Reads and converts the JSON to type T
.
public:
override BinaryData ^ Read(System::Text::Json::Utf8JsonReader % reader, Type ^ typeToConvert, System::Text::Json::JsonSerializerOptions ^ options);
public override BinaryData? Read (ref System.Text.Json.Utf8JsonReader reader, Type typeToConvert, System.Text.Json.JsonSerializerOptions options);
override this.Read : Utf8JsonReader * Type * System.Text.Json.JsonSerializerOptions -> BinaryData
Public Overrides Function Read (ByRef reader As Utf8JsonReader, typeToConvert As Type, options As JsonSerializerOptions) As BinaryData
Parameters
- reader
- Utf8JsonReader
The reader.
- typeToConvert
- Type
The type to convert.
- options
- JsonSerializerOptions
An object that specifies serialization options to use.
Returns
The converted value.
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.