Class FileProcedures
Table of callback functions used with CreateStream(StreamSystem, BassFlags, FileProcedures, IntPtr).
Namespace: System.Dynamic.ExpandoObject
Assembly: ManagedBass.dll
Syntax
public class FileProcedures : object
Remarks
A copy is made of the FileProcedures callback function table, so it does not have to persist beyond this function call. Unlike Bass.Net, a reference to FileProcedures doesn't need to be held by you manually. ManagedBass automatically holds a reference and frees it when the Channel is freed.
Fields
Close
Callback function to close the file.
Declaration
public FileCloseProcedure Close
Field Value
FileCloseProcedure
|
Length
Callback function to get the file Length.
Declaration
public FileLengthProcedure Length
Field Value
FileLengthProcedure
|
Read
Callback function to read from the file.
Declaration
public FileReadProcedure Read
Field Value
FileReadProcedure
|
Seek
Callback function to seek in the file. Not used by buffered file streams.
Declaration
public FileSeekProcedure Seek
Field Value
FileSeekProcedure
|