public EndTag(ENbtBinaryReader reader) : this() { }
public TimeSpanTag(ENbtBinaryReader reader) : this(reader.ReadInt64()) { Contract.Requires <ArgumentNullException>(reader != null); }
public StringTag(ENbtBinaryReader reader) : this(reader.ReadString()) { Contract.Requires <ArgumentNullException>(reader != null); }
public Int32Vector2Tag(ENbtBinaryReader reader) : this(reader.ReadInt32(), reader.ReadInt32()) { Contract.Requires <ArgumentNullException>(reader != null); }
public static Tag ReadFrom(ENbtBinaryReader reader, TagType tagType) { Contract.Requires <ArgumentNullException>(reader != null); return(ReadFrom(reader, tagType, TagResolver.Default)); }