CogTrackedItemBase ClassCognex VisionPro 9.20
Base class for any class that will eventually implement ICogTrackedItem
Inheritance Hierarchy

System Object
  System MarshalByRefObject
    Cognex.VisionPro.Implementation CogObjectBase
      Cognex.VisionPro.Implementation CogSerializableObjectBase
        Cognex.VisionPro.Implementation CogSerializableChangedEventBase
          Cognex.VisionPro.Implementation CogTrackedItemBase
            Cognex.VisionPro.ToolBlock CogToolBlockTerminal

Namespace: Cognex.VisionPro.Implementation
Assembly: Cognex.VisionPro (in Cognex.VisionPro.dll) Version: 80.0.0.0 (80.0.0.0)
Syntax

[SerializableAttribute]
[ObsoleteAttribute("Use CogTrackedItemBaseEx instead")]
public abstract class CogTrackedItemBase : CogSerializableChangedEventBase, 
	ICogTrackingCollectionTrackedItem, ICogChangedEvent

The CogTrackedItemBase type exposes the following members.

Constructors

  NameDescription
Protected methodCogTrackedItemBase(String)
Protected methodCogTrackedItemBase(SerializationInfo, StreamingContext)
Protected methodCogTrackedItemBase(String, Object)
Protected methodCogTrackedItemBase(String, Type)
Protected methodCogTrackedItemBase(String, Object, Type)
Top
Methods

  NameDescription
Public methodBeginForceChangedEvent
Called at the begining of a section of code that must raise a changed event containing the given state flags.
Public methodCreateObjRef
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject.)
Public methodEndForceChangedEvent
Called at the end of a section of code that must raise a changed event with the given state flags... If a changed event with these state flags has not been raised "naturally" since the coresponding call to BeginForceChangedEvents was called, this call will raise the event.
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodGetAttributes
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetClassName
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetComponentName
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetConverter
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetDefaultEvent
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetDefaultProperty
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetEditor
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetEvents 
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetEvents( Attribute )
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLifetimeService
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Protected methodGetObjectData
Implements the GetObjectData method of the ISerializable interface.
(Inherited from CogSerializableObjectBase.)
Protected methodGetProperties 
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetProperties( Attribute )
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Protected methodGetPropertyOwner
Implements the corresponding member of the ICustomTypeDescriptor interface. May be overridden in derived classes to provide custom type information.
(Inherited from CogObjectBase.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitializeLifetimeService
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Protected methodMemberwiseClone 
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodMemberwiseClone(Boolean)
Creates a shallow copy of the current MarshalByRefObject object.
(Inherited from MarshalByRefObject.)
Protected methodOnChanged(Int64)
This method should be called internally whenever the object's state may have changed.
(Inherited from CogSerializableChangedEventBase.)
Protected methodOnChanged(CogChangedEventArgs) (Overrides CogSerializableChangedEventBase OnChanged(CogChangedEventArgs).)
Protected methodOnNameChanging
Public methodResumeAndRaiseChangedEvent
Re-enables raising of the Changed event after SuspendChangedEvent has been called, and raises the Changed event if the ChangedEventSuspended count is reduced to zero and any changes were made while events were suspended. Must be called once for each call to SuspendChangedEvent.
(Inherited from CogSerializableChangedEventBase.)
Public methodSuspendChangedEvent
Temporarily suspends the raising of the Changed event. May be called more than once, and a corresponding call to ResumeAndRaiseChangedEvent must be made for each call to SuspendChangedEvent.
(Inherited from CogSerializableChangedEventBase.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Fields

  NameDescription
Public fieldStatic memberSfForceChangedEvent
ForceChangedEvent state flag
Public fieldStatic memberSfID
ID state flag
Public fieldStatic memberSfName
Name state flag
Protected fieldStatic memberSfNextSf
Public fieldStatic memberSfValue
Value state flag
Public fieldStatic memberSfValueType
ValueType state flag
Top
Properties

  NameDescription
Public propertyChangedEventSuspended
If nonzero, indicates that the raising of the Changed event has been suspended. This value is incremented when SuspendChangedEvent is called and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventBase.)
Public propertyForceChangedEvent
Gets/Sets whether a CogToolBlock containing this terminal in its Outputs collection will force a changed event with the SfValue state flag set every time the CogToolBlock is run (even if the value did not change). Use this property when linking to a CogDataAnyalysisTool to prevent the CogDataAnyalysisTool from giving a reject result due to the Data Analysis Channels not being updated.
Public propertyHasChanged (Inherited from CogSerializableChangedEventBase.)
Public propertyID
Gets the ID property of the terminal
Public propertyName
Gets or Sets the name of the terminal.
Public propertyParent
Returns the Parent or CogTrackingCollection that is currently tracking this Item.
Public propertyStateFlags
Returns the complete set of state flags supported on this object. The flags may be indexed by name as shown in the following C# code snippet: if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventBase.)
Public propertyValue
Gets or Sets the value of the terminal.
Public propertyValueType
Gets the expected value type of the terminal
Top
Events

  NameDescription
Public eventChanged
This event is raised when one or more parts of the object's state may have changed.
(Inherited from CogSerializableChangedEventBase.)
Public eventNameChanging
Event raised when the name of a terminal is about to change. Gives a listener an oportuity to cancel the name change.
Top
Remarks

Provides common state flags for all ICogTrackedItem implementers
See Also