36 lines
784 B
C#
36 lines
784 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace System.Resources
|
|
{
|
|
// Token: 0x02000286 RID: 646
|
|
internal class Win32EncodedResource : Win32Resource
|
|
{
|
|
// Token: 0x060020AC RID: 8364 RVA: 0x00077B68 File Offset: 0x00075D68
|
|
internal Win32EncodedResource(NameOrId type, NameOrId name, int language, byte[] data)
|
|
: base(type, name, language)
|
|
{
|
|
this.data = data;
|
|
}
|
|
|
|
// Token: 0x1700061A RID: 1562
|
|
// (get) Token: 0x060020AD RID: 8365 RVA: 0x00077B7C File Offset: 0x00075D7C
|
|
public byte[] Data
|
|
{
|
|
get
|
|
{
|
|
return this.data;
|
|
}
|
|
}
|
|
|
|
// Token: 0x060020AE RID: 8366 RVA: 0x00077B84 File Offset: 0x00075D84
|
|
public override void WriteTo(Stream s)
|
|
{
|
|
s.Write(this.data, 0, this.data.Length);
|
|
}
|
|
|
|
// Token: 0x04000BA5 RID: 2981
|
|
private byte[] data;
|
|
}
|
|
}
|