Table of Contents

Class BinaryKV1

Namespace
ValveResourceFormat.ResourceTypes
Assembly
ValveResourceFormat.dll

Represents a binary KeyValues1 data block.

public class BinaryKV1 : Block

Inheritance

Inherited Members

Extension Methods

Fields

MAGIC

The magic number for binary KeyValues1 format (VBKV).

public const int MAGIC = 1447772758

Field Value

int

Properties

KeyValues

Gets the deserialized KeyValues data.

public KVObject KeyValues { get; }

Property Value

KVObject

Type

Gets the block type.

public override BlockType Type { get; }

Property Value

BlockType

Methods

Read(BinaryReader)

Reads the block data from a binary reader.

public override void Read(BinaryReader reader)

Parameters

reader BinaryReader

The binary reader to read from.

Serialize(Stream)

Writes the binary representation of the object to Stream.

public override void Serialize(Stream stream)

Parameters

stream Stream

Stream.

WriteText(IndentedTextWriter)

Writes the correct text dump of the object to IndentedTextWriter.

public override void WriteText(IndentedTextWriter writer)

Parameters

writer IndentedTextWriter

IndentedTextWriter.

Remarks

Converts the binary KeyValues to text format and writes it.