System.Yaml.YamlNode.OnChanged C# (CSharp) Méthode

OnChanged() protected méthode

Call this function when the content of the node is changed.
protected OnChanged ( ) : void
Résultat void
        protected virtual void OnChanged()
        {
            // avoiding inifinite loop
            if ( !ToBeRehash ) {
                try {
                    HashInvalid = true;
                    ToBeRehash = true;
                    if ( Changed != null )
                        Changed(this, EventArgs.Empty);
                } finally {
                    ToBeRehash = false;
                }
            }
        }