MapiTask.FromVTodo

FromVTodo(string)

Creates an instance of MapiTask from the specified .ics file.

public static MapiTask FromVTodo(string filePath)
ParameterTypeDescription
filePathStringThe path to the file to be loaded.

Return Value

Returns a MapiTask instance which is loaded from the specified file.

See Also


FromVTodo(string, bool)

Creates an instance of MapiTask from the specified .ics file.

public static MapiTask FromVTodo(string filePath, bool detectEncoding)
ParameterTypeDescription
filePathStringThe path to the file to be loaded.
detectEncodingBooleanDetermines a data encoding by analyzing its byte order mark (BOM)

Return Value

Returns a MapiTask instance which is loaded from the specified file.

See Also


FromVTodo(Stream)

Creates an instance of MapiTask from the specified stream.

public static MapiTask FromVTodo(Stream stream)
ParameterTypeDescription
streamStreamThe stream to be loaded.

Return Value

Returns a MapiTask instance which is loaded from the specified stream.

See Also


FromVTodo(Stream, bool)

Creates an instance of MapiTask from the specified stream.

public static MapiTask FromVTodo(Stream stream, bool detectEncoding)
ParameterTypeDescription
streamStreamThe stream to be loaded.
detectEncodingBooleanDetermines a data encoding by analyzing its byte order mark (BOM)

Return Value

Returns a MapiTask instance which is loaded from the specified stream.

See Also