ResourceCallbackArgs.outputData Property

Module: ResourceCallbackArgs

Type: byte[]

Definition

The external resource data as a byte array.

output_data: bytearray

Exceptions

An error has occurred during Bioseal Library execution.
int get outputData => getOutputData();
set outputData(int value) => setOutputData(value);

Exceptions

An error has occurred during Bioseal Library execution.
public byte[] outputData
{
    get => GetoutputData();
    set => SetoutputData(ref value);
}

Exceptions

An error has occurred during Bioseal Library execution.
public byte[] getOutputData() throws BiosealException
public void setOutputData(byte[] outputData) throws BiosealException

Exceptions

An error has occurred during Bioseal Library execution.
public var outputData: UInt8
    get {
        return try! getOutputData()
    }
}

Exceptions

An error has occurred during Bioseal Library execution.
int id3BiosealResourceCallbackArgs_GetOutputData (ID3_BIOSEAL_RESOURCE_CALLBACK_ARGS hResourceCallbackArgs, unsigned char * outputData, int * outputDataSize)
int id3BiosealResourceCallbackArgs_SetOutputData (ID3_BIOSEAL_RESOURCE_CALLBACK_ARGS hResourceCallbackArgs, unsigned char * outputData, int outputDataSize)

Returns

int
An error code.
See id3BiosealError file for the list of possible error codes.