Click or drag to resize
IdentifiableBackingFieldCompatibleObjectWrapperTId, T Class

Base class for a wrapper around serializable, backing field compatible objects that should have a unique identifier. This class is provided as a means for serializing some dictionary types.

Make sure your subclass adds SerializableAttribute.

Inheritance Hierarchy

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
[SerializableAttribute]
public abstract class IdentifiableBackingFieldCompatibleObjectWrapper<TId, T> : IdentifiableBackingFieldCompatibleObjectWrapper, 
	IIdentifiable<TId>

Type Parameters

TId
The identifier type. Currently supported types are Int32 and String.
T
The type of data being wrapped.

The IdentifiableBackingFieldCompatibleObjectWrapperTId, T type exposes the following members.

Constructors
  NameDescription
Protected methodIdentifiableBackingFieldCompatibleObjectWrapperTId, T
Initializes a new instance of the IdentifiableBackingFieldCompatibleObjectWrapperTId, T class.
Top
Methods
Properties
  NameDescription
Public propertyData
Gets the data.
Public propertyIdentifier
Gets the identifier.
Top
Remarks
See Also