Bioseal.buildVdsAsJson Method¶
Module: Bioseal
Definition¶
Builds a representation of the VDS, in JSON format.
build_vds_as_json(self, indentation: str) -> str
Parameters
indentationstrin The indentation of the json string.
Returns
strThe result.
Exceptions
An error has occurred during Bioseal Library execution.
String buildVdsAsJson(String? indentation)
Parameters
indentationStringin The indentation of the json string.
Returns
StringThe result.
Exceptions
An error has occurred during Bioseal Library execution.
public string BuildVdsAsJson(string indentation)
Parameters
indentationstringin The indentation of the json string.
Returns
stringThe result.
Exceptions
An error has occurred during Bioseal Library execution.
public String buildVdsAsJson(String indentation) throws BiosealException
Parameters
indentationStringin The indentation of the json string.
Returns
StringThe result.
Exceptions
An error has occurred during Bioseal Library execution.
public func buildVdsAsJson(indentation: String) throws -> String
Parameters
indentationStringin The indentation of the json string.
Returns
StringThe result.
Exceptions
An error has occurred during Bioseal Library execution.
int id3Bioseal_BuildVdsAsJson (
ID3_BIOSEAL hBioseal,
const char * indentation,
char * result,
int * resultSize)
Parameters
hBiosealID3_BIOSEALin Handle to the Bioseal object.indentationconst char *in The indentation of the json string.resultchar *out The result.resultSizeint *in Size of the ‘result’ buffer. Receives the minimum required buffer size to hold the ‘result’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘result’ (excluding terminating NULL character).
Returns