Esempio n. 1
0
 // Token: 0x06000449 RID: 1097 RVA: 0x0000DDD8 File Offset: 0x0000BFD8
 protected RIFFItem(RIFF parentingRIFF, string identification, uint length)
 {
     this.parentingRIFF  = parentingRIFF;
     this.identification = identification;
     this.length         = length;
 }
Esempio n. 2
0
 // Token: 0x06000454 RID: 1108 RVA: 0x0000DF5C File Offset: 0x0000C15C
 internal RIFFList(RIFF parentingRIFF, string identification, uint length, IEnumerable <RIFFItem> items) : base(parentingRIFF, identification, length)
 {
     this.items = new RIFFItemCollection(items);
 }
Esempio n. 3
0
 // Token: 0x0600044B RID: 1099 RVA: 0x0000DDFD File Offset: 0x0000BFFD
 internal RIFFChunk(RIFF parentingRIFF, string identification, uint length, long position) : base(parentingRIFF, identification, length)
 {
     this.position = position;
 }