====== ThinkGeo.MapSuite.Layers.TransactionBuffer ====== ===== Inheritance Hierarchy ===== *System.Object ***ThinkGeo.MapSuite.Layers.TransactionBuffer** ===== Members Summary ===== ==== Public Constructors ==== ** {{wiki:PublicMethod.gif|}} TransactionBuffer() ** * //This is the class constructor.// == Remarks == * //This is the default constructor and is typically not used.// == Parameters ==
** {{wiki:PublicMethod.gif|}} TransactionBuffer(Dictionary,Collection,Dictionary) ** * //N/A// == Remarks == * //N/A// == Parameters == * //addBuffer// * Type:Dictionary * Description:N/A * //deleteBuffer// * Type:Collection * Description:N/A * //editBuffer// * Type:Dictionary * Description:N/A
==== Protected Constructors ==== ==== Public Methods ==== ** {{wiki:PublicMethod.gif|}} Clear() ** * //N/A// == Remarks == * //This method will clear all the items in AddBuffer, EditBuffer and DeleteBuffer.// == Return Value == * Type:Void * Description:None. == Parameters ==
** {{wiki:PublicMethod.gif|}} AddFeature(Feature) ** * //N/A// == Remarks == * //None// == Return Value == * Type:Void * Description:None == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This parameter represents the Feature you are adding to the transaction buffer.
** {{wiki:PublicMethod.gif|}} AddFeature(BaseShape) ** * //N/A// == Remarks == * //None// == Return Value == * Type:Void * Description:None == Parameters == * //baseShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:This parameter represents the shape to be added.
** {{wiki:PublicMethod.gif|}} AddFeature(BaseShape,Dictionary) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //baseShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //columnValues// * Type:Dictionary * Description:N/A
** {{wiki:PublicMethod.gif|}} DeleteFeature(String) ** * //N/A// == Remarks == * //This does not remove a feature from the TransactionBuffer but rather it add a "to be deleted record". In this way when the TransactionBuffer if processed we know what records need to be deleted.// == Return Value == * Type:Void * Description:None == Parameters == * //featureId// * Type:String * Description:This parameter represents the unique Id for the specific Feature being passed in.
** {{wiki:PublicMethod.gif|}} EditFeature(Feature) ** * //N/A// == Remarks == * //None// == Return Value == * Type:Void * Description:None == Parameters == * //feature// * Type:[[ThinkGeo.MapSuite.Shapes.Feature|Feature]] * Description:This parameter represents the Feature to be updated.
** {{wiki:PublicMethod.gif|}} EditFeature(BaseShape) ** * //N/A// == Remarks == * //None// == Return Value == * Type:Void * Description:None == Parameters == * //baseShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:This parameter represents the shape to be updated. The shape ID should be the same as the feature you are going to update.
** {{wiki:PublicMethod.gif|}} EditFeature(BaseShape,Dictionary) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //baseShape// * Type:[[ThinkGeo.MapSuite.Shapes.BaseShape|BaseShape]] * Description:N/A * //columnValues// * Type:Dictionary * Description:N/A
** {{wiki:PublicMethod.gif|}} AddColumn(FeatureSourceColumn) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //featureSourceColumn// * Type:[[ThinkGeo.MapSuite.Layers.FeatureSourceColumn|FeatureSourceColumn]] * Description:N/A
** {{wiki:PublicMethod.gif|}} DeleteColumn(String) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //columnName// * Type:String * Description:N/A
** {{wiki:PublicMethod.gif|}} UpdateColumn(String,FeatureSourceColumn) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters == * //columnName// * Type:String * Description:N/A * //newFeatureSourceColumn// * Type:[[ThinkGeo.MapSuite.Layers.FeatureSourceColumn|FeatureSourceColumn]] * Description:N/A
** {{wiki:PublicMethod.gif|}} ToString() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:String * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} Equals(Object) ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Boolean * Description:N/A == Parameters == * //obj// * Type:Object * Description:N/A
** {{wiki:PublicMethod.gif|}} GetHashCode() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Int32 * Description:N/A == Parameters ==
** {{wiki:PublicMethod.gif|}} GetType() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Type * Description:N/A == Parameters ==
===== Protected Methods ===== ** {{wiki:ProtectedMethod.gif|}} Finalize() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Void * Description:N/A == Parameters ==
** {{wiki:ProtectedMethod.gif|}} MemberwiseClone() ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Object * Description:N/A == Parameters ==
==== Public Properties ==== ** {{wiki:PublicProperty.gif|}} AddBuffer ** * //N/A// == Remarks == * //It is recommended that you use this dictionary for reviewing and not for adding new items. The reason is that the Add, Delete and Edit methods to various validation checks. For example if you call the DeleteFeature twice it will handle the case that you really only want to delete the record once. Another example is if you edit a record twice it will replace the existing edit with the new one.// == Return Value == * Type:Dictionary ** {{wiki:PublicProperty.gif|}} DeleteBuffer ** * //N/A// == Remarks == * //It is recommended that you use this dictionary for reviewing and not for adding new items. The reason is that the Add, Delete and Edit methods to various validation checks. For example if you call the DeleteFeature twice it will handle the case that you really only want to delete the record once. Another example is if you edit a record twice it will replace the existing edit with the new one.// == Return Value == * Type:Collection ** {{wiki:PublicProperty.gif|}} EditBuffer ** * //N/A// == Remarks == * //It is recommended that you use this dictionary for reviewing and not for adding new items. The reason is that the Add, Delete and Edit methods to various validation checks. For example if you call the DeleteFeature twice it will handle the case that you really only want to delete the record once. Another example is if you edit a record twice it will replace the existing edit with the new one.// == Return Value == * Type:Dictionary ** {{wiki:PublicProperty.gif|}} AddColumnBuffer ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection<[[ThinkGeo.MapSuite.Layers.FeatureSourceColumn|FeatureSourceColumn]]> ** {{wiki:PublicProperty.gif|}} DeleteColumnBuffer ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Collection ** {{wiki:PublicProperty.gif|}} UpdateColumnBuffer ** * //N/A// == Remarks == * //N/A// == Return Value == * Type:Dictionary ==== Protected Properties ==== ==== Public Events ====