示例#1
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public void writePoint(org.neo4j.values.storable.CoordinateReferenceSystem crs, double[] coordinate) throws IllegalArgumentException
            public override void WritePoint(CoordinateReferenceSystem crs, double[] coordinate)
            {
                if (AllowStorePointsAndTemporal)
                {
                    Block.ValueBlocks = GeometryType.encodePoint(KeyId, crs, coordinate);
                }
                else
                {
                    throw new UnsupportedFormatCapabilityException(Capability.POINT_PROPERTIES);
                }
            }