ObjectManager.RecordDelayedFixup(Int64, String, Int64) 方法
定义
记录对象成员的修正,以便在稍后执行。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)
参数
- objectToBeFixed
- Int64
需要对 objectRequired 的引用的对象的 ID。The ID of the object that needs the reference to objectRequired.
- memberName
- String
将在其中执行修正的 objectToBeFixed 的成员名称。The member name of objectToBeFixed where the fixup will be performed.
- objectRequired
- Int64
objectToBeFixed 需要的对象的 ID。The ID of the object required by objectToBeFixed.
例外
objectToBeFixed 或 objectRequired 参数小于或等于零。objectToBeFixed or objectRequired parameter is less than or equal to zero.
memberName 参数为 null。The memberName parameter is null.
注解
修正针对指定对象的指定成员。The fixup is for a specified member of a specified object. 在修复过程中要使用的值作为 objectRequired 参数提供。The value to be used during the fixup process is provided as the objectRequired argument.