ExoModel.ModelEventScope.Flush C# (CSharp) 메소드

Flush() 공개 메소드

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

            RaiseExited();
        }