GitScc.SccProviderService.UpdateSolution_Cancel C# (CSharp) Method

UpdateSolution_Cancel() public method

public UpdateSolution_Cancel ( ) : int
return int
        public int UpdateSolution_Cancel()
        {
            Debug.WriteLine("Git Source Control Provider: resume refresh after cancel...");
            IDisposable handle = Interlocked.Exchange(ref _updateSolutionDisableRefresh, null);
            if (handle != null)
                handle.Dispose();

            return VSConstants.S_OK;
        }
SccProviderService