ThinkGeo.com    |     Documentation    |     Premium Support

Types of FeatureSourceColumn in InMemoryFeatureLayer?

Hi,


I've gotten an InMemoryFeatureLayer with column data to work, but only with columns as as strings.


Are any other column types supported in InMemoryFeatureLayer as-is, e.g. some form of (random) binary data ?


I'm thinking of storing serialized output from BinaryFormatter.


If I need to build my own implementation, will this need to be of the FeatureSourceColumn class, or something else ?


Are there any examples available for such a task ?


 



Lars, 
  
   We only use strings for column values to make thing much easier for the average user.  If the underlying format was something else we convert it to string as we read it.   
  
   For your case you can convert to Base64 string to convert the binary to text and then you can convert back to binary when you need it.  The code is pretty simple as Convert.ToBase64String(byte[]).  
  
 David