Binarysharp.MemoryManagement.Modules.InjectedModule.InjectedModule C# (CSharp) Méthode

InjectedModule() private méthode

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.
Résultat System
        internal InjectedModule(MemorySharp memorySharp, ProcessModule module, bool mustBeDisposed = true)
            : base(memorySharp, module)
        {
            // Save the parameter
            MustBeDisposed = mustBeDisposed;
        }