Table of Contents

Interface IObjectOutput

Namespace
Java.Io
Assembly
MASES.JNet.dll

.NET interface skeleton to be manually developed following https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/ObjectOutput.html

public interface IObjectOutput

Methods

Close()

void Close()

Exceptions

IOException

Flush()

void Flush()

Exceptions

IOException

Write(byte[])

void Write(byte[] arg0)

Parameters

arg0 byte[]

byte

Exceptions

IOException

Write(byte[], int, int)

void Write(byte[] arg0, int arg1, int arg2)

Parameters

arg0 byte[]

byte

arg1 int

int

arg2 int

int

Exceptions

IOException

Write(int)

void Write(int arg0)

Parameters

arg0 int

int

Exceptions

IOException

WriteObject(object)

void WriteObject(object arg0)

Parameters

arg0 object

object

Exceptions

IOException