Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Addins/Mono.Addins.Database/IAssemblyReflector.cs')
-rw-r--r--Mono.Addins/Mono.Addins.Database/IAssemblyReflector.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Mono.Addins/Mono.Addins.Database/IAssemblyReflector.cs b/Mono.Addins/Mono.Addins.Database/IAssemblyReflector.cs
index 79f7a9e..8ef8bb5 100644
--- a/Mono.Addins/Mono.Addins.Database/IAssemblyReflector.cs
+++ b/Mono.Addins/Mono.Addins.Database/IAssemblyReflector.cs
@@ -28,6 +28,7 @@
using System;
using System.Collections;
using System.Collections.Generic;
+using System.IO;
namespace Mono.Addins.Database
{
@@ -40,6 +41,8 @@ namespace Mono.Addins.Database
object LoadAssembly (string file);
object LoadAssemblyFromReference (object asmReference);
+ string[] GetResourceNames (object asm);
+ Stream GetResourceStream (object asm, string resourceName);
IEnumerable GetAssemblyTypes (object asm);
IEnumerable GetAssemblyReferences (object asm);