Search Results for

    Show / Hide Table of Contents

    Class WfsFeatureTypeInfo

    Inheritance
    object
    WfsFeatureTypeInfo
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Mapsui.Providers.Wfs.Utilities
    Assembly: Mapsui.Nts.dll
    Syntax
    public class WfsFeatureTypeInfo

    Constructors

    | Edit this page View Source

    WfsFeatureTypeInfo()

    Initializes a new instance of the WfsFeatureTypeInfo class.

    Declaration
    public WfsFeatureTypeInfo()
    | Edit this page View Source

    WfsFeatureTypeInfo(string, string, string, string, string)

    Initializes a new instance of the WfsFeatureTypeInfo class.

    Declaration
    public WfsFeatureTypeInfo(string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName)
    Parameters
    Type Name Description
    string serviceUri
    string nsPrefix

    Use an empty string or 'null', if there is no prefix for the featuretype.

    string featureTypeNamespace

    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.

    string featureType
    string geometryName

    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.

    | Edit this page View Source

    WfsFeatureTypeInfo(string, string, string, string, string, GeometryTypeEnum)

    Initializes a new instance of the WfsFeatureTypeInfo class.

    Declaration
    public WfsFeatureTypeInfo(string serviceUri, string nsPrefix, string featureTypeNamespace, string featureType, string geometryName, GeometryTypeEnum geometryType)
    Parameters
    Type Name Description
    string serviceUri
    string nsPrefix

    Use an empty string or 'null', if there is no prefix for the featuretype.

    string featureTypeNamespace

    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.

    string featureType
    string geometryName

    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.

    GeometryTypeEnum geometryType

    Specifying the geometry type helps to accelerate the rendering process.

    Properties

    | Edit this page View Source

    BBox

    Gets or sets the spatial extent of the featuretype - defined as minimum bounding rectangle.

    Declaration
    public WfsFeatureTypeInfo.BoundingBox BBox { get; set; }
    Property Value
    Type Description
    WfsFeatureTypeInfo.BoundingBox
    | Edit this page View Source

    Cs

    Separator for coordinate values (for gml:coordinates)

    Declaration
    public string Cs { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    DecimalDel

    Decimal separator (for gml:coordinates)

    Declaration
    public string DecimalDel { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Elements

    Gets the elements associated to the feature.

    Declaration
    public List<WfsFeatureTypeInfo.ElementInfo> Elements { get; }
    Property Value
    Type Description
    List<WfsFeatureTypeInfo.ElementInfo>
    | Edit this page View Source

    FeatureTypeNamespace

    Gets or sets the featuretype namespace. This argument is obligatory for data retrieving, except when using the quick geometries option.

    Declaration
    public string FeatureTypeNamespace { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Geometry

    Gets or sets information about the geometry of the featuretype. Setting at least the geometry name is obligatory for data retrieving.

    Declaration
    public WfsFeatureTypeInfo.GeometryInfo Geometry { get; set; }
    Property Value
    Type Description
    WfsFeatureTypeInfo.GeometryInfo
    | Edit this page View Source

    LabelFields

    Declaration
    public List<string>? LabelFields { get; set; }
    Property Value
    Type Description
    List<string>
    | Edit this page View Source

    Name

    Gets or sets the name of the featuretype. This argument is obligatory for data retrieving.

    Declaration
    public string Name { get; set; }
    Property Value
    Type Description
    string

    The name.

    | Edit this page View Source

    Prefix

    Gets or sets the prefix of the featuretype and it's nested elements. This argument is obligatory for data retrieving, if the featuretype is declared with a prefix in 'GetCapabilities'.

    Declaration
    public string? Prefix { get; set; }
    Property Value
    Type Description
    string

    The prefix.

    | Edit this page View Source

    SRID

    Gets or sets the spatial reference ID

    Declaration
    public string SRID { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    ServiceUri

    Gets or sets the service URI for WFS 'GetFeature' request. This argument is obligatory for data retrieving.

    Declaration
    public string? ServiceUri { get; set; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Ts

    Tuple separator (for gml:coordinates)

    Declaration
    public string Ts { get; set; }
    Property Value
    Type Description
    string
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX