The following tables list the members exposed by TransactedCompoundFile.Options.
Name | Description | |
---|---|---|
TransactedCompoundFile.Options Constructor | Constructs an Options instance |
Name | Description | |
---|---|---|
BlockSize | Defines the block-size used for storing data. Data storred in a given handle must be less than ((16*BlockSize)-8) | |
CommitOnDispose | Automatically Commit the storage file when it's disposed. | |
CommitOnWrite | When true every write will rewrite the modified handle(s) back to disk, otherwise the handle state is kept in memory until a call to commit has been made. | |
CreateNew | True to create a new file, false to use the existing file. If this value is false and the file does not exist an exception will be raised. | |
FileOptions | The FileOptions used for writing to the file | |
FilePath | Retrieves the file name that was provided to the constructor | |
LoadingRule | See comments on the LoadingRule enumerated type and Commit(Action,T) | |
MaxWriteSize | Returns the maximum number of bytes that can be written to a single handle base on the current BlockSize setting. | |
ReadOnly | Gets or sets a flag that controls if the file is opened in read-only mode. For ReadOnly files, another writer may exist; however, changes to the file will not be reflected until reload. |