Skip to main content
A newer version of this page is available. .

WmsCustomParameterCollection Class

Contains a collection of web map service custom parameters.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Map, 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