IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
ModuleReader.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.IO;
4
6{
7
11 abstract class ModuleReader : IDisposable
12 {
13
19 public abstract Stream? Open(string name);
20
25 public abstract IEnumerable<string> List();
26
28 public abstract void Dispose();
29
30 }
31
32}
Provides access to the content of a module.
IEnumerable< string > List()
Lists the contents of the module, returning a stream of elements that are the names of all resources ...
Stream? Open(string name)
Opens a resource, returning an input stream to read the resource in the module.