C# Class Mapsui.Providers.Wfs.Utilities.WfsFeatureTypeInfo

Mostra file Open project: pauldendulk/Mapsui Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
WfsFeatureTypeInfo ( )

Initializes a new instance of the WfsFeatureTypeInfo class.

WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName )

Initializes a new instance of the WfsFeatureTypeInfo class.

WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName, GeometryTypeEnum geometryType )

Initializes a new instance of the WfsFeatureTypeInfo class.

Method Details

WfsFeatureTypeInfo() public method

Initializes a new instance of the WfsFeatureTypeInfo class.
public WfsFeatureTypeInfo ( )

WfsFeatureTypeInfo() public method

Initializes a new instance of the WfsFeatureTypeInfo class.
public WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName )
serviceUri string
nsPrefix string /// Use an empty string or 'null', if there is no prefix for the featuretype. ///
featureTypeNamespace string /// Use an empty string or 'null', if there is no namespace for the featuretype. /// You don't need to know the namespace of the feature type, if you use the quick geometries option. ///
featureType string
geometryName string /// The geometry name is the property of the featuretype from which geometry information can be obtained from. /// Usually this property is called something like 'Shape' or 'geom'. It is absolutely necessary to give this parameter. ///

WfsFeatureTypeInfo() public method

Initializes a new instance of the WfsFeatureTypeInfo class.
public WfsFeatureTypeInfo ( string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName, GeometryTypeEnum geometryType )
serviceUri string
nsPrefix string /// Use an empty string or 'null', if there is no prefix for the featuretype. ///
featureTypeNamespace string /// Use an empty string or 'null', if there is no namespace for the featuretype. /// You don't need to know the namespace of the feature type, if you use the quick geometries option. ///
featureType string
geometryName string /// The geometry name is the property of the featuretype from which geometry information can be obtained from. /// Usually this property is called something like 'Shape' or 'geom'. It is absolutely necessary to give this parameter. ///
geometryType GeometryTypeEnum /// Specifying the geometry type helps to accelerate the rendering process. ///