LLDB.AttachInfo.SetWaitForLaunch C# (CSharp) Method

SetWaitForLaunch() public method

Set attach by process name settings.

Designed to be used after a call to SBAttachInfo::SetExecutable().

Future calls to SBTarget::Attach(...) will be synchronous or

asynchronous depending on the

argument.

public SetWaitForLaunch ( bool b, bool async ) : void
b bool
async bool /// If /// then the SBTarget::Attach(...) call will be a /// synchronous call with no way to cancel the attach in /// progress. /// If /// then the SBTarget::Attach(...) function will /// return immediately and clients are expected to wait for a /// process eStateStopped event if a suitable process is /// eventually found. If the client wants to cancel the event, /// SBProcess::Stop() can be called and an eStateExited process /// event will be delivered. ///
return void
        public void SetWaitForLaunch(bool b, bool async)
        {
            Internal.SetWaitForLaunch_1((__Instance + __PointerAdjustment), b, async);
        }