DicomObjects.NET Core Documentation
DicomObjects Namespace / DicomDataSet Class / Read Method / Read(Stream) Method

The Stream from which to read.




In This Topic
    Read(Stream) Method
    In This Topic
    Reads from a standard Stream
    Syntax
    'Declaration
     
    
    Public Overloads Sub Read( _
       ByVal Stream As Stream _
    ) 
    'Usage
     
    
    Dim instance As DicomDataSet
    Dim Stream As Stream
     
    instance.Read(Stream)
    public void Read( 
       Stream Stream
    )
    public:
    void Read( 
       Stream^ Stream
    ) 

    Parameters

    Stream

    The Stream from which to read.

    Remarks

    This method can read streams in either official "Part10" format, with the 128 byte header, or unofficial "Part5" format, without a header. Detection of the type is automatic.

    The stream may have been written by the Write method or by other DICOM software.

    It is the caller's responsibility to position the stream correctly before calling this method - no rewind is done internally.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also