Show / Hide Table of Contents

    Interface IDataInput

    Equivalent to Java's DataInput interface

    Namespace: Lucene.Net.Support.IO
    Assembly: Lucene.Net.dll
    Syntax
    public interface IDataInput

    Methods

    | Improve this Doc View Source

    ReadBoolean()

    Declaration
    bool ReadBoolean()
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    ReadByte()

    NOTE: This was readUnsignedByte() in Java

    Declaration
    int ReadByte()
    Returns
    Type Description
    System.Int32
    | Improve this Doc View Source

    ReadChar()

    Declaration
    char ReadChar()
    Returns
    Type Description
    System.Char
    | Improve this Doc View Source

    ReadDouble()

    Declaration
    double ReadDouble()
    Returns
    Type Description
    System.Double
    | Improve this Doc View Source

    ReadFully(Byte[])

    Declaration
    void ReadFully(byte[] b)
    Parameters
    Type Name Description
    System.Byte[] b
    | Improve this Doc View Source

    ReadFully(Byte[], Int32, Int32)

    Declaration
    void ReadFully(byte[] b, int off, int len)
    Parameters
    Type Name Description
    System.Byte[] b
    System.Int32 off
    System.Int32 len
    | Improve this Doc View Source

    ReadInt16()

    NOTE: This was readShort() in Java

    Declaration
    short ReadInt16()
    Returns
    Type Description
    System.Int16
    | Improve this Doc View Source

    ReadInt32()

    NOTE: This was readInt() in Java

    Declaration
    int ReadInt32()
    Returns
    Type Description
    System.Int32
    | Improve this Doc View Source

    ReadInt64()

    NOTE: This was readLong() in Java

    Declaration
    long ReadInt64()
    Returns
    Type Description
    System.Int64
    | Improve this Doc View Source

    ReadLine()

    Declaration
    string ReadLine()
    Returns
    Type Description
    System.String
    | Improve this Doc View Source

    ReadSByte()

    NOTE: This was readByte() in Java

    Declaration
    int ReadSByte()
    Returns
    Type Description
    System.Int32
    | Improve this Doc View Source

    ReadSingle()

    Declaration
    float ReadSingle()
    Returns
    Type Description
    System.Single
    | Improve this Doc View Source

    ReadUInt16()

    NOTE: This was readUnsignedShort() in Java

    Declaration
    int ReadUInt16()
    Returns
    Type Description
    System.Int32
    | Improve this Doc View Source

    ReadUTF()

    Declaration
    string ReadUTF()
    Returns
    Type Description
    System.String
    | Improve this Doc View Source

    SkipBytes(Int32)

    Declaration
    int SkipBytes(int n)
    Parameters
    Type Name Description
    System.Int32 n
    Returns
    Type Description
    System.Int32

    Extension Methods

    Number.IsNumber(Object)
    • Improve this Doc
    • View Source
    Back to top Copyright © 2019 Licensed to the Apache Software Foundation (ASF)