LLDB.Module.GetPlatformFileSpec C# (CSharp) Method

GetPlatformFileSpec() public method

Get accessor for the module platform file specification.

Platform file refers to the path of the module as it is known on

the remote system on which it is being debugged. For local

debugging this is always the same as Module::GetFileSpec(). But

remote debugging might mention a file '/usr/lib/liba.dylib'

which might be locally downloaded and cached. In this case the

platform file could be something like:

'/tmp/lldb/platform-cache/remote.host.computer/usr/lib/liba.dylib'

The file could also be cached in a local developer kit directory.

public GetPlatformFileSpec ( ) : LLDB.FileSpec
return LLDB.FileSpec
        public LLDB.FileSpec GetPlatformFileSpec()
        {
            var __ret = new LLDB.FileSpec.Internal();
            Internal.GetPlatformFileSpec_0((__Instance + __PointerAdjustment), new IntPtr(&__ret));
            return LLDB.FileSpec.__CreateInstance(__ret);
        }