IWMSServiceDescription Interface
Provides access to members give access to WMSServiceDescription information.
Members
Name | Description | |
---|---|---|
![]() |
BaseURL | Base url for given capability and request method. |
![]() |
ExceptionFormat | Supported exception at the given index. |
![]() |
ExceptionFormatCount | Supported exception format count. |
![]() |
FeatureInfoFormat | Supported FeatureInfoFormat at the given index. |
![]() |
FeatureInfoFormatCount | Supported FeatureInfoFormat count. |
![]() |
FeatureInfoRequestURL | The url to download the feature info from. |
![]() |
FireWMSException | Notifies listeners about a valid exception from the WMS Service. |
![]() |
FireWMSRequest | Notifies listeners about the URL request made to this WMS Service. |
![]() |
ImageFormat | Supported GetMap's ImageFormat at the given index. |
![]() |
ImageFormatCount | Supported GetMap's ImageFormat count. |
![]() |
ImageRequestUrl | The URL to download the map image from. |
![]() |
LayerDescription | WMS layer information at the given index. |
![]() |
LayerDescriptionCount | WMS layer count. |
![]() |
SRS | Supported SRS at the given index. |
![]() |
SRSCount | Supported SRS count. |
![]() |
WMSAbstract | Abstract of WMS Service. |
![]() |
WMSName | Name of WMS Service. |
![]() |
WMSTitle | Title of WMS Service. |
![]() |
WMSVersion | Version of WMS Service. |
IWMSServiceDescription.BaseURL Property
Base url for given capability and request method.
Public Function get_BaseURL ( _
ByVal capability As String, _
ByVal requestMethod As String _
) As String
public string get_BaseURL (
string capability,
string requestMethod
);
IWMSServiceDescription.ExceptionFormat Property
Supported exception at the given index.
Public Function get_ExceptionFormat ( _
ByVal index As Integer _
) As String
public string get_ExceptionFormat (
int index
);
IWMSServiceDescription.ExceptionFormatCount Property
Supported exception format count.
Public ReadOnly Property ExceptionFormatCount As Integer
public int ExceptionFormatCount {get;}
IWMSServiceDescription.FeatureInfoFormat Property
Supported FeatureInfoFormat at the given index.
Public Function get_FeatureInfoFormat ( _
ByVal index As Integer _
) As String
public string get_FeatureInfoFormat (
int index
);
IWMSServiceDescription.FeatureInfoFormatCount Property
Supported FeatureInfoFormat count.
Public ReadOnly Property FeatureInfoFormatCount As Integer
public int FeatureInfoFormatCount {get;}
IWMSServiceDescription.FeatureInfoRequestURL Property
The url to download the feature info from.
Public Function get_FeatureInfoRequestURL ( _
ByVal pLayers As IArray, _
ByVal pBoundingBox As IEnvelope, _
ByVal imageWidth As Integer, _
ByVal imageHeight As Integer, _
ByVal positionX As Integer, _
ByVal positionY As Integer, _
ByVal featureCount As Integer, _
ByVal responseFormat As String _
) As String
public string get_FeatureInfoRequestURL (
IArray pLayers,
IEnvelope pBoundingBox,
int imageWidth,
int imageHeight,
int positionX,
int positionY,
int featureCount,
string responseFormat
);
IWMSServiceDescription.FireWMSException Method
Notifies listeners about a valid exception from the WMS Service.
Public Sub FireWMSException ( _
ByVal requestType As String, _
ByVal requestURL As String, _
ByVal pException As IWMSServiceExceptionHandler _
)
public void FireWMSException (
string requestType,
string requestURL,
IWMSServiceExceptionHandler pException
);
IWMSServiceDescription.FireWMSRequest Method
Notifies listeners about the URL request made to this WMS Service.
Public Sub FireWMSRequest ( _
ByVal requestType As String, _
ByVal requestURL As String _
)
public void FireWMSRequest (
string requestType,
string requestURL
);
IWMSServiceDescription.ImageFormat Property
Supported GetMap's ImageFormat at the given index.
Public Function get_ImageFormat ( _
ByVal index As Integer _
) As String
public string get_ImageFormat (
int index
);
IWMSServiceDescription.ImageFormatCount Property
Supported GetMap's ImageFormat count.
Public ReadOnly Property ImageFormatCount As Integer
public int ImageFormatCount {get;}
IWMSServiceDescription.ImageRequestUrl Property
The URL to download the map image from.
Public Function get_ImageRequestUrl ( _
ByVal pLayers As IArray, _
ByVal pBoundingBox As IEnvelope, _
ByVal imageWidth As Integer, _
ByVal imageHeight As Integer, _
ByVal bgColor As Integer, _
ByVal responseFormat As String, _
ByVal drawTransparent As Boolean _
) As String
public string get_ImageRequestUrl (
IArray pLayers,
IEnvelope pBoundingBox,
int imageWidth,
int imageHeight,
int bgColor,
string responseFormat,
bool drawTransparent
);
IWMSServiceDescription.LayerDescription Property
WMS layer information at the given index.
Public Function get_LayerDescription ( _
ByVal index As Integer _
) As IWMSLayerDescription
public IWMSLayerDescription get_LayerDescription (
int index
);
IWMSServiceDescription.LayerDescriptionCount Property
WMS layer count.
Public ReadOnly Property LayerDescriptionCount As Integer
public int LayerDescriptionCount {get;}
IWMSServiceDescription.SRS Property
Supported SRS at the given index.
Public Function get_SRS ( _
ByVal index As Integer _
) As String
public string get_SRS (
int index
);
IWMSServiceDescription.SRSCount Property
Supported SRS count.
Public ReadOnly Property SRSCount As Integer
public int SRSCount {get;}
IWMSServiceDescription.WMSAbstract Property
Abstract of WMS Service.
Public ReadOnly Property WMSAbstract As String
public string WMSAbstract {get;}
Remarks
The abstract is a narrative description of the WMS service.
IWMSServiceDescription.WMSName Property
Name of WMS Service.
Public ReadOnly Property WMSName As String
public string WMSName {get;}
Remarks
Name is text used to identify a WMS service for machine-to-machine communication.
IWMSServiceDescription.WMSTitle Property
Title of WMS Service.
Public ReadOnly Property WMSTitle As String
public string WMSTitle {get;}
Remarks
Title is the user-friendly text used to identify a WMS service.
IWMSServiceDescription.WMSVersion Property
Version of WMS Service.
Public ReadOnly Property WMSVersion As String
public string WMSVersion {get;}
Classes that implement IWMSServiceDescription
Classes | Description |
---|---|
WMSConnection | The Connection for WMS. |
Remarks
IWMSServiceDescription provides access to members that describe the capabilities of a WMS service.