WmsCustomParameterCollection Class
Contains a collection of web map service custom parameters.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
[NonCategorized]
public class WmsCustomParameterCollection :
MapDependencyObject,
IDictionary,
ICollection,
IEnumerable
Related API Members
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");
Inheritance
Object
DispatcherObject
DependencyObject
Freezable
MapDependencyObject
WmsCustomParameterCollection
See Also