46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace Hjg.Pngcs.Chunks
|
|
{
|
|
// Token: 0x02000010 RID: 16
|
|
internal class PngChunkSkipped : PngChunk
|
|
{
|
|
// Token: 0x06000061 RID: 97 RVA: 0x000030D0 File Offset: 0x000012D0
|
|
internal PngChunkSkipped(string id, ImageInfo imgInfo, int clen)
|
|
: base(id, imgInfo)
|
|
{
|
|
base.Length = clen;
|
|
}
|
|
|
|
// Token: 0x06000062 RID: 98 RVA: 0x000030E1 File Offset: 0x000012E1
|
|
public sealed override bool AllowsMultiple()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
// Token: 0x06000063 RID: 99 RVA: 0x000030E4 File Offset: 0x000012E4
|
|
public sealed override ChunkRaw CreateRawChunk()
|
|
{
|
|
throw new PngjException("Non supported for a skipped chunk");
|
|
}
|
|
|
|
// Token: 0x06000064 RID: 100 RVA: 0x000030F0 File Offset: 0x000012F0
|
|
public sealed override void ParseFromRaw(ChunkRaw c)
|
|
{
|
|
throw new PngjException("Non supported for a skipped chunk");
|
|
}
|
|
|
|
// Token: 0x06000065 RID: 101 RVA: 0x000030FC File Offset: 0x000012FC
|
|
public sealed override void CloneDataFromRead(PngChunk other)
|
|
{
|
|
throw new PngjException("Non supported for a skipped chunk");
|
|
}
|
|
|
|
// Token: 0x06000066 RID: 102 RVA: 0x00003108 File Offset: 0x00001308
|
|
public override PngChunk.ChunkOrderingConstraint GetOrderingConstraint()
|
|
{
|
|
return PngChunk.ChunkOrderingConstraint.NONE;
|
|
}
|
|
}
|
|
}
|