ReadJson Method (DicomDataSetCollection)
In This Topic
Read DICOM data from a JSON Stream
Syntax
'Declaration
Public Sub ReadJson( _
ByVal As System.IO.Stream, _
Optional ByVal As System.String _
)
'Usage
Dim instance As DicomDataSetCollection
Dim Stream As System.IO.Stream
Dim TransferSyntax As System.String
instance.ReadJson(Stream, TransferSyntax)
public void ReadJson(
System.IO.Stream ,
System.string
)
public procedure ReadJson(
: System.IO.Stream;
: System.String
);
public function ReadJson(
: System.IO.Stream,
: System.String
);
public: void ReadJson(
System.IO.Stream* ,
System.string*
)
public:
void ReadJson(
System.IO.Stream^ ,
System.String^
)
Parameters
- Stream
- The Stream to read from
- TransferSyntax
- The transfer syntax to assign to the resulting instances - see remarks
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also