NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ObjectManager.RecordDelayedFixup

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
);

Parameters

objectToBeFixed
The ID of the object on which the fixup is to be performed.
memberName
The member of that object on which the fixup is to be performed
objectRequired
[To be supplied.]

Exceptions

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

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.

See Also

ObjectManager Class | ObjectManager Members | System.Runtime.Serialization Namespace