[fdo-commits] r735 - in
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections: . Capabilities
svn_fdo at osgeo.org
svn_fdo at osgeo.org
Wed Feb 7 16:43:20 EST 2007
Author: gregboone
Date: 2007-02-07 16:43:19 -0500 (Wed, 07 Feb 2007)
New Revision: 735
Modified:
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgArgumentDefinitionCollection.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinition.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinitionCollection.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilities.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilitiesImp.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilities.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilitiesImp.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilities.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilitiesImp.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilities.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilitiesImp.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilities.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilitiesImp.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilities.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilitiesImp.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgReadOnlyArgDefColl.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgSignatureDefinition.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionary.h
branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionaryImp.h
Log:
893057: DOC: FDO Managed API Documentation Updates
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgArgumentDefinitionCollection.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgArgumentDefinitionCollection.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgArgumentDefinitionCollection.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -217,10 +217,11 @@
///
/// \param array
/// Output the one-dimensional Array that is the destination of the elements copied from this collection.
+ ///
/// \param startAt
/// Input an integer that represents the index in array at which copying begins.
///
- System::Void CopyTo(ArgumentDefinition* array[],System::Int32 size);
+ System::Void CopyTo(ArgumentDefinition* array[],System::Int32 startAt);
/// \brief
/// Gets the item in the collection at the specified index.
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinition.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinition.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinition.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -94,9 +94,6 @@
/// \brief
/// Gets an array of ArgumentDefinition objects required for the function.
///
- /// \param length
- /// Output the number of argument definitions.
- ///
/// \return
/// Returns the list of argument definitions
///
@@ -123,7 +120,7 @@
/// defined so that this class can be a NamedCollection element.
///
/// \return
- /// Returns false
+ /// Returns true if the name of the object can be changed.
///
__property System::Boolean get_CanSetName();
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinitionCollection.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinitionCollection.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgFunctionDefinitionCollection.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -230,10 +230,11 @@
///
/// \param array
/// Output the one-dimensional Array that is the destination of the elements copied from this collection.
+ ///
/// \param startAt
/// Input an integer that represents the index in array at which copying begins.
///
- System::Void CopyTo(FunctionDefinition* array[],System::Int32 size);
+ System::Void CopyTo(FunctionDefinition* array[],System::Int32 startAt);
/// \brief
/// Gets the item in the collection at the specified index.
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilities.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilities.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilities.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -29,9 +29,6 @@
/// \brief
/// Gets an array of the CommandType values supported by the feature provider.
///
- /// \param size
- /// Output the number of commands
- ///
/// \return
/// Returns the list of commands
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilitiesImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilitiesImp.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgICommandCapabilitiesImp.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -34,9 +34,6 @@
/// \brief
/// Gets an array of the CommandType values supported by the feature provider.
///
- /// \param size
- /// Output the number of commands
- ///
/// \return
/// Returns the list of commands
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilities.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilities.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilities.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -48,9 +48,6 @@
/// \brief
/// Gets the spatial context extent types supported by the feature provider.
///
- /// \param length
- /// Output the number of spatial context types.
- ///
/// \return
/// Returns the list of spatial context extent types.
///
@@ -67,9 +64,6 @@
/// \brief
/// Gets an array of the LockType values supported by the feature provider.
///
- /// \param size
- /// Output the number of lock types
- ///
/// \return
/// Returns the list of lock types
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilitiesImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilitiesImp.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIConnectionCapabilitiesImp.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -43,9 +43,6 @@
/// \brief
/// Gets the spatial context extent types supported by the feature provider.
///
- /// \param length
- /// Output the number of spatial context types.
- ///
/// \return
/// Returns the list of spatial context extent types.
///
@@ -62,9 +59,6 @@
/// \brief
/// Gets an array of the LockType values supported by the feature provider.
///
- /// \param size
- /// Output the number of lock types
- ///
/// \return
/// Returns the list of lock types
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilities.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilities.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilities.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -37,9 +37,6 @@
/// \brief
/// Returns an array of ExpressionType objects the feature provider supports.
///
- /// \param length
- /// Input the number of expression types
- ///
/// \return
/// Returns the list of expression types
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilitiesImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilitiesImp.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIExpressionCapabilitiesImp.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -34,9 +34,6 @@
/// \brief
/// Returns an array of ExpressionType objects the feature provider supports.
///
- /// \param length
- /// Input the number of expression types
- ///
/// \return
/// Returns the list of expression types
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilities.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilities.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilities.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -38,9 +38,6 @@
/// \brief
/// Returns an array of ConditionType objects the feature provider supports.
///
- /// \param length
- /// Output the number of condition types
- ///
/// \return
/// Returns the list of condition types
///
@@ -49,9 +46,6 @@
/// \brief
/// Returns an array of SpatialOperation objects the feature provider supports.
///
- /// \param length
- /// Output the number of spatial operations
- ///
/// \return
/// Returns the list of spartial operations
///
@@ -60,9 +54,6 @@
/// \brief
/// Returns an array of DistanceOperation objects the feature provider supports.
///
- /// \param length
- /// Output the number of distance operations
- ///
/// \return
/// Returns the list of distance operations
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilitiesImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilitiesImp.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIFilterCapabilitiesImp.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -33,9 +33,6 @@
/// \brief
/// Returns an array of ConditionType objects the feature provider supports.
///
- /// \param length
- /// Output the number of condition types
- ///
/// \return
/// Returns the list of condition types
///
@@ -44,9 +41,6 @@
/// \brief
/// Returns an array of SpatialOperation objects the feature provider supports.
///
- /// \param length
- /// Output the number of spatial operations
- ///
/// \return
/// Returns the list of spartial operations
///
@@ -55,9 +49,6 @@
/// \brief
/// Returns an array of DistanceOperation objects the feature provider supports.
///
- /// \param length
- /// Output the number of distance operations
- ///
/// \return
/// Returns the list of distance operations
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilities.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilities.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilities.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -29,9 +29,6 @@
/// Return the list of supported geometry types. For example, if a client wanted to know if a provider supported
/// multi-polygons, it would call GetGeometryTypes and check if the MultiPolygon type was listed.
///
- /// \param length
- /// Output the number of geometry types.
- ///
/// \return
/// Returns the list of geometry types
///
@@ -41,9 +38,6 @@
/// Return the list of supported component types. For example, if a client wanted to know if circular arcs were supported
/// by a provider, it would call GetGeometryComponentTypes and check for CircularArcSegment in the returned list.
///
- /// \param length
- /// Output the number of component types.
- ///
/// \return
/// Returns the list of component types
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilitiesImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilitiesImp.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgIGeometryCapabilitiesImp.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -34,9 +34,6 @@
/// Return the list of supported geometry types. For example, if a client wanted to know if a provider supported
/// multi-polygons, it would call GetGeometryTypes and check if the MultiPolygon type was listed.
///
- /// \param length
- /// Output the number of geometry types.
- ///
/// \return
/// Returns the list of geometry types
///
@@ -46,9 +43,6 @@
/// Return the list of supported component types. For example, if a client wanted to know if circular arcs were supported
/// by a provider, it would call GetGeometryComponentTypes and check for CircularArcSegment in the returned list.
///
- /// \param length
- /// Output the number of component types.
- ///
/// \return
/// Returns the list of component types
///
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilities.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilities.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilities.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -41,9 +41,6 @@
/// \brief
/// Returns an array of the ClassType objects the feature provider supports.
///
- /// \param length
- /// Output the number of class types.
- ///
/// \return
/// Returns the list of class types.
///
@@ -52,9 +49,6 @@
/// \brief
/// Returns an array of the DataType objects the feature provider supports.
///
- /// \param length
- /// Output the number of data types.
- ///
/// \return
/// Returns the list of data types
///
@@ -77,9 +71,6 @@
/// \brief
/// Returns the maximum supported precision for a decimal data property.
///
- /// \param
- /// None.
- ///
/// \return
/// Returns the maximum supported precision for a decimal data property.
///
@@ -88,9 +79,6 @@
/// \brief
/// Returns the maximum supported scale for a decimal data property.
///
- /// \param
- /// None.
- ///
/// \return
/// Returns the maximum supported scale for a decimal data property.
///
@@ -116,9 +104,6 @@
/// Returns a string that includes all the reserved characters that cannot be
/// used for the various schema element names for the provider.
///
- /// \param
- /// None
- ///
/// \return
/// Returns a string with the reserved characters for the identified schema element.
///
@@ -127,9 +112,6 @@
/// \brief
/// Returns an array of the DataType objects the feature provider supports for auto-generation.
///
- /// \param length
- /// Output the number of data types.
- ///
/// \return
/// Returns the list of data types
///
@@ -138,9 +120,6 @@
/// \brief
/// Returns a list of property types that can be used for identity properties.
///
- /// \param length
- /// Output the number of data types.
- ///
/// \return
/// Returns a string with the reserved characters for the identified schema element.
///
@@ -190,9 +169,6 @@
/// Returns TRUE if default values can be specified for a data property
/// definition, FALSE otherwise.
///
- /// \param
- /// None
- ///
/// \return
/// Returns TRUE if default values can be specified for a data property
/// definition, FALSE otherwise.
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilitiesImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilitiesImp.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgISchemaCapabilitiesImp.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -34,9 +34,6 @@
/// \brief
/// Returns an array of the ClassType objects the feature provider supports.
///
- /// \param length
- /// Output the number of class types.
- ///
/// \return
/// Returns the list of class types.
///
@@ -45,9 +42,6 @@
/// \brief
/// Returns an array of the DataType objects the feature provider supports.
///
- /// \param length
- /// Output the number of data types.
- ///
/// \return
/// Returns the list of data types
///
@@ -70,9 +64,6 @@
/// \brief
/// Returns the maximum supported precision for a decimal data property.
///
- /// \param
- /// None.
- ///
/// \return
/// Returns the maximum supported precision for a decimal data property.
///
@@ -81,9 +72,6 @@
/// \brief
/// Returns the maximum supported scale for a decimal data property.
///
- /// \param
- /// None.
- ///
/// \return
/// Returns the maximum supported scale for a decimal data property.
///
@@ -109,9 +97,6 @@
/// Returns a string that includes all the reserved characters that cannot be
/// used for the various schema element names for the provider.
///
- /// \param
- /// None
- ///
/// \return
/// Returns a string with the reserved characters for the identified schema element.
///
@@ -120,9 +105,6 @@
/// \brief
/// Returns an array of the DataType objects the feature provider supports for auto-generation.
///
- /// \param length
- /// Output the number of data types.
- ///
/// \return
/// Returns the list of data types
///
@@ -131,9 +113,6 @@
/// \brief
/// Returns a list of property types that can be used for identity properties.
///
- /// \param length
- /// Output the number of data types.
- ///
/// \return
/// Returns a string with the reserved characters for the identified schema element.
///
@@ -183,9 +162,6 @@
/// Returns TRUE if default values can be specified for a data property
/// definition, FALSE otherwise.
///
- /// \param
- /// None
- ///
/// \return
/// Returns TRUE if default values can be specified for a data property
/// definition, FALSE otherwise.
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgReadOnlyArgDefColl.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgReadOnlyArgDefColl.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgReadOnlyArgDefColl.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -140,10 +140,11 @@
///
/// \param array
/// Output the one-dimensional Array that is the destination of the elements copied from this collection.
+ ///
/// \param startAt
/// Input an integer that represents the index in array at which copying begins.
///
- System::Void CopyTo(NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::ArgumentDefinition* array[], System::Int32 index);
+ System::Void CopyTo(NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::ArgumentDefinition* array[], System::Int32 startAt);
/// \brief
/// Determines the index of a specific ArgumentDefinition object.
@@ -182,7 +183,7 @@
/// \brief
/// Gets the item in the collection at the specified index.
///
- /// \param index
+ /// \param name
/// The name of the item in the collection.
///
/// \return
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgSignatureDefinition.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgSignatureDefinition.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/Capabilities/mgSignatureDefinition.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -29,6 +29,8 @@
using namespace NAMESPACE_OSGEO_FDO_SCHEMA;
BEGIN_NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES
+/// \brief
+/// The FDO SignatureDefinition class allows the signatures of FDO FunctionDefinition objects to be defined.
public __gc class SignatureDefinition : public NAMESPACE_OSGEO_RUNTIME::Disposable
{
public:
@@ -266,10 +268,11 @@
///
/// \param array
/// Output the one-dimensional Array that is the destination of the elements copied from this collection.
+ ///
/// \param startAt
/// Input an integer that represents the index in array at which copying begins.
///
- System::Void CopyTo(NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::SignatureDefinition *array[], System::Int32 size);
+ System::Void CopyTo(NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::SignatureDefinition *array[], System::Int32 startAt);
/// \brief
/// Gets the item in the collection at the specified index.
@@ -411,11 +414,14 @@
inline FdoReadOnlySignatureDefinitionCollection *GetImpObj();
private:
- // System::Collections::ICollection interfaces
+ // System::Collections::ICollection methods
System::Void System::Collections::ICollection::CopyTo(System::Array *array, System::Int32 index);
+
+ // System::Collections::ICollection properties
__property System::Object *System::Collections::ICollection::get_SyncRoot();
__property System::Boolean System::Collections::ICollection::get_IsSynchronized();
+/// \endcond
public:
ReadOnlySignatureDefinitionCollection();
@@ -441,11 +447,11 @@
///
/// \param array
/// Output the one-dimensional Array that is the destination of the elements copied from this collection.
+ ///
/// \param startAt
/// Input an integer that represents the index in array at which copying begins.
///
- System::Void CopyTo(NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::SignatureDefinition *array[],
- System::Int32 index);
+ System::Void CopyTo(NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::SignatureDefinition *array[], System::Int32 startAt);
/// \brief
/// Determines the index of a specific SignatureDefinition object.
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionary.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionary.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionary.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -32,16 +32,13 @@
{
public:
/// \brief
- /// Gets the names of all the properties that can appear in a connection string
+ /// Gets the names of all the properties that can appear in a connection string
/// for this feature provider as an array of Strings. The order of the property
/// names in the resulting array dictate the order in which they need to be
/// specified. This is especially important for the success of the
/// EnumeratePropertyValues method because properties that occur earlier in the array
/// may be required for successful enumeration of properties that appear later.
///
- /// \param count
- /// Output the number of parameters
- ///
/// \return
/// Returns the list of parameter names
///
@@ -118,12 +115,10 @@
System::Boolean IsPropertyEnumerable(System::String* name);
/// \brief
- /// Returns an array of possible values for the specified property.
+ /// Returns an array of possible values for the specified property.
///
/// \param name
/// Input the property name.
- /// \param count
- /// Output the number of values.
///
/// \return
/// Returns the list of values for this property.
@@ -131,7 +126,7 @@
System::String* EnumeratePropertyValues(System::String* name) [];
/// \brief
- /// Gets a localized name for the property (for NLS purposes).
+ /// Gets a localized name for the property (for NLS purposes).
///
/// \param name
/// Input the property name.
Modified: branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionaryImp.h
===================================================================
--- branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionaryImp.h 2007-02-07 21:41:24 UTC (rev 734)
+++ branches/3.2.x/Fdo/Managed/Src/OSGeo/FDO/Connections/mgIConnectionPropertyDictionaryImp.h 2007-02-07 21:43:19 UTC (rev 735)
@@ -36,16 +36,13 @@
{
public:
/// \brief
- /// Gets the names of all the properties that can appear in a connection string
+ /// Gets the names of all the properties that can appear in a connection string
/// for this feature provider as an array of Strings. The order of the property
/// names in the resulting array dictate the order in which they need to be
/// specified. This is especially important for the success of the
/// EnumeratePropertyValues method because properties that occur earlier in the array
/// may be required for successful enumeration of properties that appear later.
///
- /// \param count
- /// Output the number of parameters
- ///
/// \return
/// Returns the list of parameter names
///
@@ -126,8 +123,6 @@
///
/// \param name
/// Input the property name.
- /// \param count
- /// Output the number of values.
///
/// \return
/// Returns the list of values for this property.
More information about the fdo-commits
mailing list