Castle.DynamicProxy.ModuleScope
namespace Castle.DynamicProxy
{
public class ModuleScope
{
public static readonly string DEFAULT_FILE_NAME;
public static readonly string DEFAULT_ASSEMBLY_NAME;
public string StrongNamedModuleName { get; }
public string StrongNamedModuleDirectory { get; }
public string WeakNamedModuleName { get; }
public string WeakNamedModuleDirectory { get; }
public ModuleScope();
public ModuleScope(bool savePhysicalAssembly);
public ModuleScope(bool savePhysicalAssembly, bool disableSignedModule);
public ModuleScope(bool savePhysicalAssembly, bool disableSignedModule, string strongAssemblyName, string strongModulePath, string weakAssemblyName, string weakModulePath);
public static byte[] GetKeyPair();
public string SaveAssembly();
public string SaveAssembly(bool strongNamed);
public void LoadAssemblyIntoCache(Assembly assembly);
}
}