AssessmentAnywhere.Services.AccountActivation.AccountActivation.TryComplete C# (CSharp) Method

TryComplete() public method

public TryComplete ( ) : bool
return bool
        public bool TryComplete()
        {
            if (completed)
            {
                return true;
            }

            if (HasExpired)
            {
                return false;
            }

            this.completed = true;
            return true;
        }