예제 #1
0
 /// <summary>
 /// Adds an object to the serialization cache.
 /// </summary>
 /// <remarks>This method makes a permanant addition to the serialization class.
 /// Any time the serializer encounters the object, it will use the cached reference
 /// instead of serializing the entire object.</remarks>
 /// <param name="cachedObject">Object to cache.</param>
 public void CacheObject(object cachedObject)
 {
     _AltSerializer.CacheObject(cachedObject);
 }