ObjectManager.RecordFixup(Int64, MemberInfo, Int64) Method

Definition

Records a fixup for a member of an object, to be executed later.

public:
 virtual void RecordFixup(long objectToBeFixed, System::Reflection::MemberInfo ^ member, long objectRequired);
public virtual void RecordFixup (long objectToBeFixed, System.Reflection.MemberInfo member, long objectRequired);
abstract member RecordFixup : int64 * System.Reflection.MemberInfo * int64 -> unit
override this.RecordFixup : int64 * System.Reflection.MemberInfo * int64 -> unit
Public Overridable Sub RecordFixup (objectToBeFixed As Long, member As MemberInfo, objectRequired As Long)

Parameters

objectToBeFixed
Int64

The ID of the object that needs the reference to the objectRequired object.

member
MemberInfo

The member of objectToBeFixed where the fixup will be performed.

objectRequired
Int64

The ID of the object required by objectToBeFixed.

Exceptions

The objectToBeFixed or objectRequired parameter is less than or equal to zero.

The member parameter is null.

Remarks

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 parameter.

Applies to