Server.QueuedMemoryWriter.QueueForIndex C# (CSharp) Méthode

QueueForIndex() public méthode

public QueueForIndex ( ISerializable serializable, int size ) : void
serializable ISerializable
size int
Résultat void
		public void QueueForIndex(ISerializable serializable, int size)
		{
			IndexInfo info;

			info.size = size;

			info.typeCode = serializable.TypeReference;	//For guilds, this will automagically be zero.
			info.serial = serializable.SerialIdentity;

			_orderedIndexInfo.Add(info);
		}