ExoModel.ModelEventScope.Flush C# (CSharp) Method

Flush() public method

Raises the Exited event for the current scope and all parent scopes.
public Flush ( ) : void
return void
        public void Flush()
        {
            // flush parent scopes first
            if (parent != null)
                parent.Flush();

            RaiseExited();
        }