Table of Contents

Delegate TagSelector

Namespace
fNbt
Assembly
fNbt.dll

Delegate used to skip loading certain tags of an NBT stream/file. The callback should return "true" for any tag that should be read,and "false" for any tag that should be skipped.

public delegate bool TagSelector(NbtTag tag)

Parameters

tag NbtTag

Tag that is being read. Tag's type and name are available, but the value has not yet been read at this time. Guaranteed to never be null.

Returns

bool
Delegate used to skip loading certain tags of an NBT stream/file. The callback should return "true" for any tag that should be read,and "false" for any tag that should be skipped.