Example #1
0
 public NullMetadataLoader()
     : base(new ServiceContainer(), ImageLocation.FromUri(""), new byte[0])
 {
 }
Example #2
0
 public CHeaderLoader(IServiceProvider services, ImageLocation imagelocation, byte[] bytes)
     : base(services, imagelocation, bytes)
 {
     this.stream = new MemoryStream(bytes);
 }
Example #3
0
 public MetadataLoader(IServiceProvider services, ImageLocation imagelocation, byte[] bytes)
 {
     this.Services = services;
     this.Location = imagelocation;
 }