[]
Read shape file data from stream.
public static Dictionary<VectorItemBase, C1ShapeAttributes> Read(Stream stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | Stream that contains ShapeFile data. |
| Type | Description |
|---|---|
| Dictionary<VectorItemBase, C1ShapeAttributes> | Dictionary of vector objects and shape attribute objects for C1VectorLayer. |
Read shape file and dbf datas from stream.
public static Dictionary<VectorItemBase, C1ShapeAttributes> Read(Stream stream, Stream dbfStream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | Stream that contains ShapeFile data. |
| Stream | dbfStream | Stream that contains DBF data. |
| Type | Description |
|---|---|
| Dictionary<VectorItemBase, C1ShapeAttributes> | Dictionary of vector objects and shape attribute objects for C1VectorLayer. |
Read shape file data from byte array.
public static Dictionary<VectorItemBase, C1ShapeAttributes> Read(byte[] content)
| Type | Name | Description |
|---|---|---|
| byte[] | content | Byte array that contains ShapeFile data. |
| Type | Description |
|---|---|
| Dictionary<VectorItemBase, C1ShapeAttributes> | dictionary of vector objects and shape attribute objects for C1VectorLayer. |
Read shape file and dbf datas from byte array.
public static Dictionary<VectorItemBase, C1ShapeAttributes> Read(byte[] content, byte[] dbfContent)
| Type | Name | Description |
|---|---|---|
| byte[] | content | Byte array that contains ShapeFile data. |
| byte[] | dbfContent | Byte array that contains DBF data. |
| Type | Description |
|---|---|
| Dictionary<VectorItemBase, C1ShapeAttributes> | dictionary of vector objects and shape attribute objects for C1VectorLayer. |