ObjectManager::RecordFixup Method (Int64, MemberInfo^, Int64)
.NET Framework (current version)
Records a fixup for a member of an object, to be executed later.
Assembly: mscorlib (in mscorlib.dll)
public: virtual void RecordFixup( long long objectToBeFixed, MemberInfo^ member, long long objectRequired )
Parameters
- objectToBeFixed
-
Type:
System::Int64
The ID of the object that needs the reference to the objectRequired object.
- member
-
Type:
System.Reflection::MemberInfo^
The member of objectToBeFixed where the fixup will be performed.
- objectRequired
-
Type:
System::Int64
The ID of the object required by objectToBeFixed.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The objectToBeFixed or objectRequired parameter is less than or equal to zero. |
| ArgumentNullException | The member parameter is null. |
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.
.NET Framework
Available since 1.1
Available since 1.1
Show: