FDO .NET API Reference Feature Data Objects

mgIDataStorePropertyDictionary.h

Go to the documentation of this file.
00001 /*
00002 * Copyright (C) 2004-2006  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 #include "FDO\Connections\mgIConnectionPropertyDictionary.h"
00022 
00023 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE
00024 
00025 /// \ingroup (OSGeoFDOCommandsDataStore)
00026 /// \interface OSGeo::FDO::Commands::DataStore::IDataStorePropertyDictionary
00027 /// \brief
00028 /// The IDataStorePropertyDictionary exposes a dictionary style interface
00029 /// to the datastore properties. The properties required to create or destroy a datastore
00030 /// can be determined and their values can be set through this interface.
00031 public __gc __interface IDataStorePropertyDictionary : public NAMESPACE_OSGEO_FDO_CONNECTIONS::IConnectionPropertyDictionary
00032 {
00033 public:
00034     /// \brief
00035     /// Determines if the specified property represents a file name.
00036     /// 
00037     /// \param name 
00038     /// Input the property name
00039     /// 
00040     /// \return
00041     /// Returns true if the specified property is a file name
00042     /// 
00043     System::Boolean IsPropertyFileName(System::String* name);
00044 
00045     /// \brief
00046     /// Determines if the specified property represents a path name.
00047     /// 
00048     /// \param name 
00049     /// Input the property name
00050     /// 
00051     /// \return
00052     /// Returns true if the specified property is a path name
00053     /// 
00054     System::Boolean IsPropertyFilePath(System::String* name);
00055 };
00056 
00057 END_NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE
00058 
00059 

Comments or suggestions? Send us feedback.