Show / Hide Table of Contents
View Source

Class AbstractBinaryDataReader

Inheritance
System.Object
AbstractBinaryDataReader
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:EvilDICOM.Core.IO.Data
Assembly:EvilDICOM.dll
Syntax
public abstract class AbstractBinaryDataReader

Methods

View Source

ReadDoublePrecision(Byte[], Func<Byte[], Double>)

Declaration
public static double[] ReadDoublePrecision(byte[] data, Func<byte[], double> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.Double> readSingleFunc
Returns
Type Description
System.Double[]
View Source

ReadSignedLong(Byte[], Func<Byte[], Int32>)

Declaration
public static int[] ReadSignedLong(byte[] data, Func<byte[], int> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.Int32> readSingleFunc
Returns
Type Description
System.Int32[]
View Source

ReadSignedShort(Byte[], Func<Byte[], Int16>)

Declaration
public static short[] ReadSignedShort(byte[] data, Func<byte[], short> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.Int16> readSingleFunc
Returns
Type Description
System.Int16[]
View Source

ReadSignedVeryLong(Byte[], Func<Byte[], Int64>)

Declaration
public static long[] ReadSignedVeryLong(byte[] data, Func<byte[], long> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.Int64> readSingleFunc
Returns
Type Description
System.Int64[]
View Source

ReadSinglePrecision(Byte[], Func<Byte[], Single>)

Declaration
public static float[] ReadSinglePrecision(byte[] data, Func<byte[], float> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.Single> readSingleFunc
Returns
Type Description
System.Single[]
View Source

ReadTag(Byte[], Func<Byte[], Tag>)

Declaration
public static Tag[] ReadTag(byte[] data, Func<byte[], Tag> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], Tag> readSingleFunc
Returns
Type Description
Tag[]
View Source

ReadUnsignedLong(Byte[], Func<Byte[], UInt32>)

Declaration
public static uint[] ReadUnsignedLong(byte[] data, Func<byte[], uint> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.UInt32> readSingleFunc
Returns
Type Description
System.UInt32[]
View Source

ReadUnsignedShort(Byte[], Func<Byte[], UInt16>)

Declaration
public static ushort[] ReadUnsignedShort(byte[] data, Func<byte[], ushort> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.UInt16> readSingleFunc
Returns
Type Description
System.UInt16[]
View Source

ReadUnsignedVeryLong(Byte[], Func<Byte[], UInt64>)

Declaration
public static ulong[] ReadUnsignedVeryLong(byte[] data, Func<byte[], ulong> readSingleFunc)
Parameters
Type Name Description
System.Byte[] data
System.Func<System.Byte[], System.UInt64> readSingleFunc
Returns
Type Description
System.UInt64[]
Back to top Copyright © 2015-2016 Microsoft
Generated by DocFX