UpkManager.Domain.Models.UpkFile.Tables.DomainExportTableEntry.ParseDomainObject C# (CSharp) Method

ParseDomainObject() public method

public ParseDomainObject ( DomainHeader header, bool skipProperties, bool skipParse ) : Task
header DomainHeader
skipProperties bool
skipParse bool
return Task
    public async Task ParseDomainObject(DomainHeader header, bool skipProperties, bool skipParse) {
      DomainObject = objectTypeFactory();

      await DomainObject.ReadDomainObject(DomainObjectReader, header, this, skipProperties, skipParse);
    }