Create a header by reading the information from the input stream.


Namespace: nom.tam.fits
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function ReadHeader( _ 
   ByVal dis As ArrayDataIO _ 
) As Header
C#
public static Header ReadHeader(
   ArrayDataIO dis
)
C++
public:
 static Header ReadHeader(
   ArrayDataIO dis
)
J#
public static Header ReadHeader(
   ArrayDataIO dis
)
JScript
public static  function ReadHeader(
   dis : ArrayDataIO
) : Header

Parameters

dis
The input stream to read the data from.

Return Value

null if there was a problem with the header; otherwise return the header read from the input stream.

See Also