Click or drag to resize

TargetedSegmentListOperatorResults Class

The base class that gets returned when a TargetedSegmentListOperatorEvaluator is computed. Typically this class should be extended unless the operation produces no results itself. In addition to the properties in this type, any other data that your operator computed that an end user might care about should be added to your type inheriting from this one.
Inheritance Hierarchy

Namespace:  AGI.Foundation.SegmentPropagation
Assembly:  AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public class TargetedSegmentListOperatorResults : ICloneWithContext

The TargetedSegmentListOperatorResults type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCompletedSuccessfully
Gets or sets a value indicating whether the operator run completed successfully.
Public propertyFinalSegmentsResults
Gets or sets the SegmentListResults of the segments propagated after the operator was executed.
Public propertyIdentifier
Gets or sets the definition of the operator that ran.
Public propertyParentConfiguration
Gets the configuration of the TargetedSegmentList that the operator was a part of. The configuration is a mutable object, and it is possible that an operator made some change to it or a copy of it. This must return the configuration that the propagator should use after running the operator that made this set of results. If no changes were made to the configuration, it should return the configuration that the operator was given.
Top
Methods
  NameDescription
Public methodClone
Clones this object using the specified context.
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.)
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.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also