DataDictionary.Types.Structure.RecoverUpdateInformation C# (CSharp) Méthode

RecoverUpdateInformation() public méthode

Ensures that all update information has been deleted
public RecoverUpdateInformation ( ) : void
Résultat void
        public override void RecoverUpdateInformation()
        {
            base.RecoverUpdateInformation();

            foreach (StructureElement element in Elements)
            {
                element.RecoverUpdateInformation();
            }

            foreach (Procedure procedure in Procedures)
            {
                procedure.RecoverUpdateInformation();
            }

            foreach (Rule rule in Rules)
            {
                rule.RecoverUpdateInformation();
            }

            foreach (StateMachine stateMachine in StateMachines)
            {
                stateMachine.RecoverUpdateInformation();
            }
        }