Changes between Version 1 and Version 2 of MapGuideRfc86
- Timestamp:
- 09/24/09 18:47:57 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc86
v1 v2 35 35 36 36 {{{ 37 /// \brief38 /// Bind FDO connection to current session for a feature source.37 /// \brief 38 /// Bind FDO connection to current session for a feature source. 39 39 /// 40 /// \param featureSourceId (MgResourceIdentifier) 41 /// A resource identifier referring to a feature source. 42 /// 43 /// \return 44 /// Returns nothing. 45 /// 46 void BindConnection(MgResourceIdentifier featureSourceId) = 0; 40 /// \param featureSourceId (MgResourceIdentifier) 41 /// A resource identifier referring to a feature source. 42 /// 43 /// \return 44 /// Returns nothing. 45 /// 46 47 void BindConnection(MgResourceIdentifier featureSourceId) = 0; 47 48 /// \brief 48 49 /// Unbind FDO connection bound to current session for the specified feature 49 /// source.50 /// source. 50 51 /// 51 /// \param featureSourceId (MgResourceIdentifier)52 /// A resource identifier referring to a feature source.53 ///54 /// \return55 /// Returns nothing.56 ///57 void UnbindConnection(MgResourceIdentifier featureSourceId) = 0;52 /// \param featureSourceId (MgResourceIdentifier) 53 /// A resource identifier referring to a feature source. 54 /// 55 /// \return 56 /// Returns nothing. 57 /// 58 void UnbindConnection(MgResourceIdentifier featureSourceId) = 0; 58 59 }}} 59 60 60 Some of methods in MgFeatureService don’t depend on an existing feature source and an FDO connection. So this change has on effect on them. For example, MgFeatureService::GetFeatureProviders, MgFeatureService::XmlToSchema, and so on.61 Some of methods in !MgFeatureService don’t depend on an existing feature source and an FDO connection. So this change has on effect on them. For example, MgFeatureService::GetFeatureProviders, MgFeatureService::!XmlToSchema, and so on. 61 62 62 63 == Implications ==