LLDB.Module.GetFileSpec C# (CSharp) Method

GetFileSpec() public method

Get const accessor for the module file specification.

This function returns the file for the module on the host system

that is running LLDB. This can differ from the path on the

platform since we might be doing remote debugging.

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