OlmStorage.Load

Load(Stream)

Load OLM storage from stream. This method is used when a OlmStorage object is created using constructor with the TraversalExceptionsCallback parameter.

public bool Load(Stream stream)
ParameterTypeDescription
streamStreamThe stream.

Return Value

’true’ if the file has been loaded successfully and further traversal is possible; otherwise, false.

See Also


Load(string)

Load OLM storage from file. This method is used when a OlmStorage object is created using constructor with the TraversalExceptionsCallback parameter.

public bool Load(string fileName)
ParameterTypeDescription
fileNameStringThe file name.

Return Value

’true’ if the file has been loaded successfully and further traversal is possible; otherwise, false.

See Also