ObjectManager.RecordDelayedFixup(Int64, String, Int64) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Records a fixup for an object member, to be executed later.
public:
virtual void RecordDelayedFixup(long objectToBeFixed, System::String ^ memberName, long objectRequired);
public virtual void RecordDelayedFixup (long objectToBeFixed, string memberName, long objectRequired);
abstract member RecordDelayedFixup : int64 * string * int64 -> unit
override this.RecordDelayedFixup : int64 * string * int64 -> unit
Public Overridable Sub RecordDelayedFixup (objectToBeFixed As Long, memberName As String, objectRequired As Long)
Parameters
- objectToBeFixed
- Int64
The ID of the object that needs the reference to objectRequired
.
- memberName
- String
The member name of objectToBeFixed
where the fixup will be performed.
- objectRequired
- Int64
The ID of the object required by objectToBeFixed
.
Exceptions
objectToBeFixed
or objectRequired
parameter is less than or equal to zero.
The memberName
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
argument.