Ejemplo n.º 1
0
 public void Read(ClrModuleReader reader)
 {
     this.Version = reader.ReadVersion();
     this.Flags = (AssemblyFlags)reader.Binary.ReadUInt32();
     this.PublicKeyOrToken = reader.ReadBlob();
     this.Name = reader.ReadString();
     this.Culture = reader.ReadString();
     this.HashValue = reader.ReadBlob();
 }
Ejemplo n.º 2
0
 public void Read(ClrModuleReader reader)
 {
     this.Version          = reader.ReadVersion();
     this.Flags            = (AssemblyFlags)reader.Binary.ReadUInt32();
     this.PublicKeyOrToken = reader.ReadBlob();
     this.Name             = reader.ReadString();
     this.Culture          = reader.ReadString();
     this.HashValue        = reader.ReadBlob();
 }
Ejemplo n.º 3
0
 public void Read(ClrModuleReader reader)
 {
     this.Type = (ElementType)reader.Binary.ReadByte();
     byte padding = reader.Binary.ReadByte();
     this.Parent = reader.ReadCodedIndex<HasConstant>();
     this.Value = reader.ReadBlob();
 }
Ejemplo n.º 4
0
        public void Read(ClrModuleReader reader)
        {
            this.Type = (ElementType)reader.Binary.ReadByte();
            byte padding = reader.Binary.ReadByte();

            this.Parent = reader.ReadCodedIndex <HasConstant>();
            this.Value  = reader.ReadBlob();
        }
Ejemplo n.º 5
0
 public void Read(ClrModuleReader reader)
 {
     this.HashAlgId = (AssemblyHashAlgorithm)reader.Binary.ReadUInt32();
     this.Version   = reader.ReadVersion();
     this.Flags     = (AssemblyFlags)reader.Binary.ReadUInt32();
     this.PublicKey = reader.ReadBlob();
     this.Name      = reader.ReadString();
     this.Culture   = reader.ReadString();
 }
Ejemplo n.º 6
0
 public void Read(ClrModuleReader reader)
 {
     this.HashAlgId = (AssemblyHashAlgorithm)reader.Binary.ReadUInt32();
     this.Version = reader.ReadVersion();
     this.Flags = (AssemblyFlags)reader.Binary.ReadUInt32();
     this.PublicKey = reader.ReadBlob();
     this.Name = reader.ReadString();
     this.Culture = reader.ReadString();
 }
Ejemplo n.º 7
0
 public void Read(ClrModuleReader reader)
 {
     this.Parent = reader.ReadCodedIndex<HasFieldMarshal>();
     this.NativeType = new MarshalSpec(reader.ReadBlob());
 }
Ejemplo n.º 8
0
 public void Read(ClrModuleReader reader)
 {
     this.Parent = reader.ReadCodedIndex <HasCustomAttribute>();
     this.Type   = reader.ReadCodedIndex <CustomAttributeType>();
     this.Value  = new CustomAttributeData(reader.ReadBlob());
 }
Ejemplo n.º 9
0
 public void Read(ClrModuleReader reader)
 {
     this.SignatureBlob = reader.ReadBlob();
 }
Ejemplo n.º 10
0
 public void Read(ClrModuleReader reader)
 {
     this.Parent     = reader.ReadCodedIndex <HasFieldMarshal>();
     this.NativeType = new MarshalSpec(reader.ReadBlob());
 }
Ejemplo n.º 11
0
 public void Read(ClrModuleReader reader)
 {
     this.Action        = (SecurityAction)reader.Binary.ReadUInt16();
     this.Parent        = reader.ReadCodedIndex <HasDeclSecurity>();
     this.PermissionSet = reader.ReadBlob();
 }
Ejemplo n.º 12
0
 public void Read(ClrModuleReader reader)
 {
     this.Flags     = (FileAttributes)reader.Binary.ReadUInt32();
     this.Name      = reader.ReadString();
     this.HashValue = reader.ReadBlob();
 }
Ejemplo n.º 13
0
 public void Read(ClrModuleReader reader)
 {
     this.Parent = reader.ReadCodedIndex<HasCustomAttribute>();
     this.Type = reader.ReadCodedIndex<CustomAttributeType>();
     this.Value = new CustomAttributeData(reader.ReadBlob());
 }
Ejemplo n.º 14
0
 public void Read(ClrModuleReader reader)
 {
     this.Class         = reader.ReadCodedIndex <MemberRefParent>();
     this.Name          = reader.ReadString();
     this.SignatureBlob = reader.ReadBlob();
 }
Ejemplo n.º 15
0
 public void Read(ClrModuleReader reader)
 {
     this.Flags = (FileAttributes)reader.Binary.ReadUInt32();
     this.Name = reader.ReadString();
     this.HashValue = reader.ReadBlob();
 }
Ejemplo n.º 16
0
 public void Read(ClrModuleReader reader)
 {
     this.Class = reader.ReadCodedIndex<MemberRefParent>();
     this.Name = reader.ReadString();
     this.SignatureBlob = reader.ReadBlob();
 }
Ejemplo n.º 17
0
 public void Read(ClrModuleReader reader)
 {
     this.Action = (SecurityAction)reader.Binary.ReadUInt16();
     this.Parent = reader.ReadCodedIndex<HasDeclSecurity>();
     this.PermissionSet = reader.ReadBlob();
 }
Ejemplo n.º 18
0
 public void Read(ClrModuleReader reader)
 {
     this.SignatureBlob = reader.ReadBlob();
 }