Binarysharp.MemoryManagement.Modules.InjectedModule.InjectedModule C# (CSharp) Method

InjectedModule() private method

Initializes a new instance of the InjectedModule class.
private InjectedModule ( MemorySharp memorySharp, ProcessModule module, bool mustBeDisposed = true ) : System
memorySharp MemorySharp The reference of the object.
module System.Diagnostics.ProcessModule The native object corresponding to the injected module.
mustBeDisposed bool The module will be ejected when the finalizer collects the object.
return System
        internal InjectedModule(MemorySharp memorySharp, ProcessModule module, bool mustBeDisposed = true)
            : base(memorySharp, module)
        {
            // Save the parameter
            MustBeDisposed = mustBeDisposed;
        }