Enum ExcelDataProviderType
Possible types for row data storage.
Namespace: Syncfusion.XlsIO
Assembly: Syncfusion.XlsIO.Base.dll
Syntax
public enum ExcelDataProviderType
Fields
| Name | Description |
|---|---|
| ByteArray | Uses managed byte array and other managed functions to work with memory blocks. This method is slowest, but it is the only one suitable for medium trust mode. |
| Native | Uses Win32 API and Marshal class calls to allocate and work with memory blocks. |
| Unsafe | Uses Win32 API and unsafe blocks to allocate and work with memory blocks. |