IWCSServiceDescription Interface
Provides access to members give access to WCSServiceDescription information.
Description
This interface is new at ArcGIS 9.3.
Members
Name | Description | |
---|---|---|
![]() |
Abstract | Abstract of WCS Service. |
![]() |
AccessConstrains | Constrains to access to this WCS Service. |
![]() |
BaseURL | Base url for given capability and request method. |
![]() |
CoverageDescriptionByIndex | WCS coverage information at the given index. |
![]() |
CoverageDescriptionByName | CoverageDescription by name. |
![]() |
CoverageDescriptionCount | WCS coverage count. |
![]() |
CoverageRequestUrl | The URL to download the coverage from. |
![]() |
ExceptionFormat | Supported exception at the given index. |
![]() |
ExceptionFormatCount | Supported exception format count. |
![]() |
FireWCSException | Notifies listeners about a valid exception from the WCS Service. |
![]() |
FireWCSRequest | Notifies listeners about the URL request made to this WCS Service. |
![]() |
Keyword | Available keyword at the given index. |
![]() |
KeywordCount | Available keyword count. |
![]() |
SupportedVersion | Supported version at the given index. |
![]() |
SupportedVersionsCount | Supported versions count. |
![]() |
Title | Title of WCS Service. |
![]() |
Version | Default version of WCS Service. |
![]() |
WCSName | Name of WCS Service. |
IWCSServiceDescription.Abstract Property
Abstract of WCS Service.
Public ReadOnly Property Abstract As String
public string Abstract {get;}
IWCSServiceDescription.AccessConstrains Property
Constrains to access to this WCS Service.
Public ReadOnly Property AccessConstrains As String
public string AccessConstrains {get;}
IWCSServiceDescription.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
);
IWCSServiceDescription.CoverageDescriptionByIndex Property
WCS coverage information at the given index.
Public Function get_CoverageDescriptionByIndex ( _
ByVal index As Integer _
) As IWCSCoverageDescription
public IWCSCoverageDescription get_CoverageDescriptionByIndex (
int index
);
IWCSServiceDescription.CoverageDescriptionByName Property
CoverageDescription by name.
Public Function get_CoverageDescriptionByName ( _
ByVal Name As String _
) As IWCSCoverageDescription
public IWCSCoverageDescription get_CoverageDescriptionByName (
string Name
);
IWCSServiceDescription.CoverageDescriptionCount Property
WCS coverage count.
Public ReadOnly Property CoverageDescriptionCount As Integer
public int CoverageDescriptionCount {get;}
IWCSServiceDescription.CoverageRequestUrl Property
The URL to download the coverage from.
Public Function get_CoverageRequestUrl ( _
ByVal coverageName As String, _
ByVal pBoundingBox As IEnvelope, _
ByVal CRS As String, _
ByVal responseFormat As String, _
ByVal imageWidth As Integer, _
ByVal imageHeight As Integer _
) As String
public string get_CoverageRequestUrl (
string coverageName,
IEnvelope pBoundingBox,
string CRS,
string responseFormat,
int imageWidth,
int imageHeight
);
IWCSServiceDescription.ExceptionFormat Property
Supported exception at the given index.
Public Function get_ExceptionFormat ( _
ByVal index As Integer _
) As String
public string get_ExceptionFormat (
int index
);
IWCSServiceDescription.ExceptionFormatCount Property
Supported exception format count.
Public ReadOnly Property ExceptionFormatCount As Integer
public int ExceptionFormatCount {get;}
IWCSServiceDescription.FireWCSException Method
Notifies listeners about a valid exception from the WCS Service.
Public Sub FireWCSException ( _
ByVal requestType As String, _
ByVal requestURL As String, _
ByVal pException As IWCSServiceExceptionHandler _
)
public void FireWCSException (
string requestType,
string requestURL,
IWCSServiceExceptionHandler pException
);
IWCSServiceDescription.FireWCSRequest Method
Notifies listeners about the URL request made to this WCS Service.
Public Sub FireWCSRequest ( _
ByVal requestType As String, _
ByVal requestURL As String _
)
public void FireWCSRequest (
string requestType,
string requestURL
);
IWCSServiceDescription.Keyword Property
Available keyword at the given index.
Public Function get_Keyword ( _
ByVal index As Integer _
) As String
public string get_Keyword (
int index
);
IWCSServiceDescription.KeywordCount Property
Available keyword count.
Public ReadOnly Property KeywordCount As Integer
public int KeywordCount {get;}
IWCSServiceDescription.SupportedVersion Property
Supported version at the given index.
Public Function get_SupportedVersion ( _
ByVal index As Integer _
) As String
public string get_SupportedVersion (
int index
);
IWCSServiceDescription.SupportedVersionsCount Property
Supported versions count.
Public ReadOnly Property SupportedVersionsCount As Integer
public int SupportedVersionsCount {get;}
IWCSServiceDescription.Title Property
Title of WCS Service.
Public ReadOnly Property Title As String
public string Title {get;}
IWCSServiceDescription.Version Property
Default version of WCS Service.
Public ReadOnly Property Version As String
public string Version {get;}
IWCSServiceDescription.WCSName Property
Name of WCS Service.
Public ReadOnly Property WCSName As String
public string WCSName {get;}
Classes that implement IWCSServiceDescription
Classes | Description |
---|---|
WCSConnection | The Connection for WCS. |