Edit

Share via


DeserializationContext.RecordObject Method

Definition

Overloads

RecordObject(Object)

Records deserialization of the provided object at the current object offset.

RecordObject(Object, Int32)

Records deserialization of the provided object.

RecordObject(Object)

Source:
DeserializationContext.cs

Records deserialization of the provided object at the current object offset.

public void RecordObject (object obj);
abstract member RecordObject : obj -> unit
override this.RecordObject : obj -> unit
Public Sub RecordObject (obj As Object)

Parameters

obj
Object

Implements

Applies to

RecordObject(Object, Int32)

Source:
DeserializationContext.cs

Records deserialization of the provided object.

public void RecordObject (object obj, int offset);
abstract member RecordObject : obj * int -> unit
override this.RecordObject : obj * int -> unit
Public Sub RecordObject (obj As Object, offset As Integer)

Parameters

obj
Object
offset
Int32

The offset within StreamReader.

Implements

Applies to