In This Topic
Read DICOM data from an XML Stream
Syntax
'Declaration
Public Sub ReadXml( _
ByVal As System.IO.Stream, _
Optional ByVal As System.String _
)
'Usage
Dim instance As DicomDataSet
Dim Stream As System.IO.Stream
Dim TransferSyntax As System.String
instance.ReadXml(Stream, TransferSyntax)
public void ReadXml(
System.IO.Stream ,
System.string
)
public procedure ReadXml(
: System.IO.Stream;
: System.String
);
public function ReadXml(
: System.IO.Stream,
: System.String
);
public: void ReadXml(
System.IO.Stream* ,
System.string*
)
public:
void ReadXml(
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