[This is preliminary documentation and is subject to change.]

Opens a given filename. Note it will NOT check to see if the file exists If you need that function, use "Exists" prior to it to ensure proper error handling Once the buffer is full, the "parser" event is triggered to parse the file input

Namespace:  IcarusSceneEngine
Assembly:  IcarusSceneEngine (in IcarusSceneEngine)
Version: 1.0.0.0

Syntax

C#
public static void Open(
	string filename,
	parserfunction parser,
	int buffersize
)

Parameters

filename
Type: System..::.String
Filename. Start the filename with "http:///" to initiate an internet check. If you use http:/// instad of http://, then the system web reference is substituted in
parser
Type: IcarusSceneEngine..::.parserfunction
Event to call once the buffer has been read (or file finished)
buffersize
Type: System..::.Int32
Size of the buffer

See Also