Show / Hide Table of Contents

Class FusFile

De-serialized raw contents of a .fus File. Contains a FusHeader and a very polymorphic FusContents.

Inheritance
System.Object
FusFile
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fusee.Serialization
Assembly: Fusee.Serialization.dll
Syntax
public class FusFile

Fields

Contents

The file contents. Check and cast to the concrete type to access it, e. g. using a C# 7.0 pattern matching in switch expression.

Declaration
public FusContents Contents
Field Value
Type Description
FusContents

Header

The file header. Contains some meta data.

Declaration
public FusHeader Header
Field Value
Type Description
FusHeader
Generated by DocFX
GitHub Repo
Back to top