BaconographyPortable.Common.UtilityCommandImpl.LongNavWatcher.GetTerminatedClearInFlight C# (CSharp) Method

GetTerminatedClearInFlight() public method

public GetTerminatedClearInFlight ( string url ) : bool
url string
return bool
            public bool GetTerminatedClearInFlight(string url)
            {
                lock (this)
                {
                    if (_inFlight == url)
                    {
                        _inFlight = null;
                        return false;
                    }
                }
                return true;
            }