LLDB.Module.SetRemoteInstallFileSpec C# (CSharp) Method

SetRemoteInstallFileSpec() public method

Set accessor for the remote install path for a module.

When debugging to a remote platform by connecting to a remote

platform, the install path of the module can be set. If the

install path is set, every time the process is about to launch

the target will install this module on the remote platform prior

to launching.

If

specifies a full path to an install location, the

module will be installed to this path. If the path is relative

(no directory specified, or the path is partial like "usr/lib"

or "./usr/lib", then the install path will be resolved using

the platform's current working directory as the base path.

public SetRemoteInstallFileSpec ( LLDB file ) : bool
file LLDB /// A file specification object. ///
return bool
        public bool SetRemoteInstallFileSpec(LLDB.FileSpec file)
        {
            if (ReferenceEquals(file, null))
                throw new global::System.ArgumentNullException("file", "Cannot be null because it is a C++ reference (&).");
            var arg0 = file.__Instance;
            var __ret = Internal.SetRemoteInstallFileSpec_0((__Instance + __PointerAdjustment), arg0);
            return __ret;
        }