Skip to main content
All docs
V25.1
  • WmsCustomParameterCollection Class

    Contains a collection of web map service custom parameters.

    Namespace: DevExpress.Xpf.Map

    Assembly: DevExpress.Xpf.Map.v25.1.dll

    NuGet Package: DevExpress.Wpf.Map

    Declaration

    [NonCategorized]
    public class WmsCustomParameterCollection :
        MapDependencyObject,
        IDictionary,
        ICollection,
        IEnumerable

    The following members return WmsCustomParameterCollection objects:

    Remarks

    The following example adds two custom parameters to the CustomParameters collection:

     <dxm:WmsDataProvider x:Name="WmsDataProvider1"
                          ServerUri="http://INSERT_YOUR_SERVER_URI"
                          ActiveLayerName="Layer_OSM"/>
    
    WmsDataProvider1.CustomParameters.Add("format", "Image / jpeg");
    WmsDataProvider1.CustomParameters.Add("ver", "3.24");
    
    See Also