C# Класс Dicom.IO.FileSegment

File Segment
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
FileSegment ( string fileName, long position, long length ) : System

Initializes a new instance of the FileSegment class.

GetBuffer ( ) : ByteBuffer

Gets a ByteBuffer containing this segment's data.

GetData ( ) : byte[]

Gets the data for this segment.

OpenStream ( ) : FileStream

Opens a readonly stream for this segment.

WriteTo ( Stream s ) : void

Copies this segment to a stream.

Описание методов

FileSegment() публичный Метод

Initializes a new instance of the FileSegment class.
public FileSegment ( string fileName, long position, long length ) : System
fileName string Name of the file.
position long The position.
length long The length.
Результат System

GetBuffer() публичный Метод

Gets a ByteBuffer containing this segment's data.
public GetBuffer ( ) : ByteBuffer
Результат ByteBuffer

GetData() публичный Метод

Gets the data for this segment.
public GetData ( ) : byte[]
Результат byte[]

OpenStream() публичный Метод

Opens a readonly stream for this segment.
public OpenStream ( ) : FileStream
Результат System.IO.FileStream

WriteTo() публичный Метод

Copies this segment to a stream.
public WriteTo ( Stream s ) : void
s Stream Target stream.
Результат void