This document is archived and information here might be outdated.  Recommended version.


IWCSServer.Data Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IW > IWCSServer Interface > IWCSServer.Data Property
ArcGIS Developer Help

IWCSServer.Data Property

Handle WCS request.

[Visual Basic .NET]
Public Function get_Data ( _
    ByVal sRequest As String, _
    ByRef pMimeType As String _
) As Byte[]
[C#]
public Byte[] get_Data (
    string sRequest,
    ref string pMimeType
);
[C++]
HRESULT get_Data(
  BSTR sRequest,
  System.String* pMimeType,
  SAFEARRAY(System.Byte)* ppResponse
);
[C++]
Parameters
sRequest [in]

sRequest is a parameter of type BSTR pMimeType [out]
pMimeType is a parameter of type BSTR* ppResponse [out, retval]
ppResponse is a parameter of type SAFEARRAY(unsigned char)*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

get_Data returns the response in a byte array to the client, it is the client's responsibility to parse or interpret the results.

See Also

IWCSServer Interface