Feature.Save Method
Saves this feature to a binary representation.
Save(FeatureSaveMode mode)
Saves this feature to a binary representation.Syntax
public System.IO.Stream Save (
FeatureSaveMode mode
)
Parameters
Determines whether the z-coordinates are saved.
Return Value
A binary representation of the feature.
Remarks
This method can be used to create a binary representation of a feature that includes all attributes, the geometry and the coordinate reference system. The FromStream method can then be used to re-create an exact copy from the binary representation.
This method will throw an exception if the coordinate reference system cannot be converted to a binary representation (using either an authority and authority code or well known text created by the Crs.ToWellKnownText method).
Example
// Saves the feature to a binary stream and reads it back
public static Feature SaveAndReadFeature(Feature feature)
{
// Save the given feature to a binary stream
System.IO.Stream stream = feature.Save(FeatureSaveMode.XYZ);
// Read the stream
Feature readFeature = Feature.FromStream(stream);
// Return the read feature
return readFeature;
}
Platforms
Windows, Linux, Android