Click or drag to resize
DataCollectorBase Class
base class for objects for obtaining information from the User through a user interface based on a property grid, e.g. for drivers and importers.
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.Core.GeneralDataStructuresDataCollectorBase
    SD.LLBLGen.Pro.DBDriverCoreConnectionDataBase

Namespace:  SD.LLBLGen.Pro.Core.GeneralDataStructures
Assembly:  SD.LLBLGen.Pro.Core (in SD.LLBLGen.Pro.Core.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public abstract class DataCollectorBase : INotifyPropertyChanged

The DataCollectorBase type exposes the following members.

Constructors
  NameDescription
Protected methodDataCollectorBase
Initializes a new instance of the DataCollectorBase class.
Top
Properties
  NameDescription
Public propertyEnableDisablePropertyFunc
Gets or sets the enable disable property function. This function is called (if not null) with the name of the property (first argument) to disable/enable (second argument) in a bound control.
Public propertyIsReady
Gets a value indicating whether this instance is ready. By default this property always returns false. Implement this property in a derived class to check whether all information has been gatherered.
Top
Methods
  NameDescription
Public methodCreatePropertyBagForProperties
Creates the property bag for the properties which are bound to the property grid
Protected methodEnableDisableProperty
Enables / disables the property with the name specified using a set EnableDisablePropertyFunc
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Protected methodGetPropertyNamesForBag
Gets the property names for the property bag to bind to the property grid. This list of names is used to create property descriptors which are easier to read as they have their names split on word breaks.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnPropertyChanged
Called when a property has changed its value, signaling subscribers that they should check whether this instance is ready.
Protected methodRaiseOnChangeT
Raises the on change.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Events
  NameDescription
Public eventDataCollectionChanged
Raised when data in this collector has been changed. Use IsReady to check whether this element is indeed complete or not.
Public eventPropertyChanged
Occurs when a property value changes.
Top
See Also