JustAProgrammer.ADPR.ADPRHost.ExitNestedPrompt C# (CSharp) Method

ExitNestedPrompt() public method

This API instructs the host to exit the currently running input loop. In this example this functionality is not needed so the method throws a NotImplementedException exception.
public ExitNestedPrompt ( ) : void
return void
        public override void ExitNestedPrompt()
        {
            throw new NotImplementedException("The method or operation is not implemented.");
        }