Records a fixup to be executed later.
[Visual Basic] Overridable Public Sub RecordDelayedFixup( _ ByVal objectToBeFixed As Long, _ ByVal memberName As String, _ ByVal objectRequired As Long _ ) [C#] public virtual void RecordDelayedFixup( long objectToBeFixed, string memberName, long objectRequired ); [C++] public: virtual void RecordDelayedFixup( __int64 objectToBeFixed, String* memberName, __int64 objectRequired ); [JScript] public function RecordDelayedFixup( objectToBeFixed : long, memberName : String, objectRequired : long );
Exception Type | Condition |
---|---|
ArgumentOutOfRangeException | The objectToBeFixed or objectRequired parameter is less than or equal to zero. |
ArgumentNullException | The member parameter is a null reference (in Visual Basic Nothing). |
The fixup is for a specified member of a specified object. The value to be used during the fixup process is provided as the objectRequired argument.
ObjectManager Class | ObjectManager Members | System.Runtime.Serialization Namespace