Interface IDataOutput
Equivalent to Java's DataOutut interface
Assembly: Lucene.Net.dll
Syntax
public interface IDataOutput
Methods
|
Improve this Doc
View Source
Write(Byte[])
Declaration
void Write(byte[] buffer)
Parameters
Type |
Name |
Description |
System.Byte[] |
buffer |
|
|
Improve this Doc
View Source
Write(Byte[], Int32, Int32)
Declaration
void Write(byte[] buffer, int offset, int count)
Parameters
Type |
Name |
Description |
System.Byte[] |
buffer |
|
System.Int32 |
offset |
|
System.Int32 |
count |
|
|
Improve this Doc
View Source
Write(Int32)
Declaration
Parameters
Type |
Name |
Description |
System.Int32 |
oneByte |
|
|
Improve this Doc
View Source
WriteBoolean(Boolean)
Declaration
void WriteBoolean(bool val)
Parameters
Type |
Name |
Description |
System.Boolean |
val |
|
|
Improve this Doc
View Source
WriteByte(Int32)
Declaration
Parameters
Type |
Name |
Description |
System.Int32 |
val |
|
|
Improve this Doc
View Source
WriteBytes(String)
Declaration
void WriteBytes(string str)
Parameters
Type |
Name |
Description |
System.String |
str |
|
|
Improve this Doc
View Source
WriteChar(Int32)
Declaration
Parameters
Type |
Name |
Description |
System.Int32 |
val |
|
|
Improve this Doc
View Source
WriteChars(String)
Declaration
void WriteChars(string str)
Parameters
Type |
Name |
Description |
System.String |
str |
|
|
Improve this Doc
View Source
WriteDouble(Double)
Declaration
void WriteDouble(double val)
Parameters
Type |
Name |
Description |
System.Double |
val |
|
|
Improve this Doc
View Source
WriteInt16(Int32)
NOTE: This was writeShort() in Java
Declaration
Parameters
Type |
Name |
Description |
System.Int32 |
val |
|
|
Improve this Doc
View Source
WriteInt32(Int32)
NOTE: This was writeInt() in Java
Declaration
Parameters
Type |
Name |
Description |
System.Int32 |
val |
|
|
Improve this Doc
View Source
WriteInt64(Int64)
NOTE: This was writeInt64() in Java
Declaration
void WriteInt64(long val)
Parameters
Type |
Name |
Description |
System.Int64 |
val |
|
|
Improve this Doc
View Source
WriteSingle(Single)
NOTE: This was writeFloat() in Java
Declaration
void WriteSingle(float val)
Parameters
Type |
Name |
Description |
System.Single |
val |
|
|
Improve this Doc
View Source
WriteUTF(String)
Declaration
void WriteUTF(string str)
Parameters
Type |
Name |
Description |
System.String |
str |
|
Extension Methods