| SignalProcessorCheckForSameDefinition Method (DefinitionalObject) | 
 
        Checks to determine if another instance has the same definition as this instance and
        returns 
 if it does.  Derived classes MUST override this method and check
        all new fields introduced by the derived class for definitional equivalence.  It is NOT necessary
        to check base class fields because the base class will already have done that.  When overriding this method,
        you should NOT call the base implementation because it will return 
 for all derived-class instances.
        Derived classes should check the type of 
other to preserve the symmetric nature of 
IsSameDefinition(Object).
      
 
    Namespace: 
   AGI.Foundation.Communications.SignalProcessing
    Assembly:
   AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxprotected override sealed bool CheckForSameDefinition(
	DefinitionalObject other
)
Protected Overrides NotOverridable Function CheckForSameDefinition ( 
	other As DefinitionalObject
) As Boolean
protected:
virtual bool CheckForSameDefinition(
	DefinitionalObject^ other
) override sealed
abstract CheckForSameDefinition : 
        other : DefinitionalObject -> bool 
override CheckForSameDefinition : 
        other : DefinitionalObject -> bool Parameters
- other
- Type: AGI.Foundation.InfrastructureDefinitionalObject
 The other instance to compare to this one.
Return Value
Type: 
Boolean if the two objects are defined equivalently; otherwise 
.
      
 See Also
See Also