SerializableObjectData Struct
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.
Provides information about a serializable object.
public value class SerializableObjectData
[System.Serializable]
public struct SerializableObjectData
[<System.Serializable>]
type SerializableObjectData = struct
Public Structure SerializableObjectData
- Inheritance
- Attributes
Remarks
The SerializableObjectData structure contains data that can be used to deserialize a serializable object.
To get a SerializableObjectData, call the GetSerializableObjectData method of an ISerializableObjectContract.
The only SerializableObjectData field that contains a value for every serializable object is the ObjectId field.
Fields
DimensionLengths |
Represents an array that contains the length of each of the dimensions of the serializable array that this SerializableObjectData describes. |
DimensionLowerBounds |
Represents an array that contains the lower bound of each of the dimensions of the serializable array that this SerializableObjectData describes. |
ElementIndexes |
Represents an array that contains the indexes of the parent array that contains the serializable object that this SerializableObjectData describes. |
IsArray |
Indicates whether the SerializableObjectData describes a serializable array. |
IsArrayElement |
Indicates whether the SerializableObjectData describes an element in a serializable array. |
MemberName |
Represents the member name of the serializable object that this SerializableObjectData describes. |
ObjectId |
Represents the ID of the serializable object that this SerializableObjectData describes. |
ParentId |
Represents the ID of the parent of the serializable object that this SerializableObjectData describes. |