.NET API Reference | OSGeo FDO Provider for WMS |
00001 /* 00002 * Copyright (C) 2004-2007 Autodesk, Inc. 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of version 2.1 of the GNU Lesser 00006 * General Public License as published by the Free Software Foundation. 00007 * 00008 * This library is distributed in the hope that it will be useful, 00009 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 * Lesser General Public License for more details. 00012 * 00013 * You should have received a copy of the GNU Lesser General Public 00014 * License along with this library; if not, write to the Free Software 00015 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00016 * 00017 */ 00018 00019 #pragma once 00020 00021 BEGIN_NAMESPACE_OSGEO_FDO_PROVIDERS_WMS 00022 00023 ///<summary> 00024 /// This command gets the list of CRS names supported by specified FeatureClass 00025 /// returned from the WMS service. 00026 ///</summary> 00027 public __gc __interface IGetFeatureClassCRSNames : public NAMESPACE_OSGEO_FDO_COMMANDS::ICommand 00028 { 00029 public: 00030 /// <summary> 00031 /// Sets the name of the FeatureClass returned from the 00032 /// WMS service. This function is mandatory; if not specified, 00033 /// execution of the command will throw exception. 00034 /// </summary> 00035 /// <param name="name"> 00036 /// The FeatureClass name. 00037 /// </param> 00038 /// <returns> 00039 /// Returns nothing. 00040 /// </returns> 00041 __property System::Void set_FeatureClassName(System::String* name); 00042 00043 /// <summary> 00044 /// Gets the name of FeatureClass to get the supportted CRS names. 00045 /// </summary> 00046 /// <returns> 00047 /// Returns the name of the FeatureClass name.</returns> 00048 __property System::String* get_FeatureClassName(); 00049 00050 /// <summary> 00051 /// Executes the command. An exception is thrown if the feature class is NULL. 00052 /// </summary> 00053 /// <returns> 00054 /// Returns a list of CRS names supportted by specifc feature class. 00055 /// </returns> 00056 NAMESPACE_OSGEO_COMMON::StringCollection* Execute(); 00057 }; 00058 00059 END_NAMESPACE_OSGEO_FDO_PROVIDERS_WMS
Comments? |