void m_script_Updated(object sender, EditableScriptUpdatedEventArgs e) { if (Changed != null) Changed(this, new EventArgs()); }
protected void RaiseUpdated(EditableScriptUpdatedEventArgs e) { if (Updated != null) { Updated(this, e); } }
private void script_Updated(object sender, EditableScriptUpdatedEventArgs e) { if (Updated != null) { Updated(this, new EditableScriptsUpdatedEventArgs((IEditableScript)sender, e)); } if (UnderlyingValueUpdated != null) { UnderlyingValueUpdated(this, new DataWrapperUpdatedEventArgs()); } System.Diagnostics.Debug.Assert(m_underlyingScript.Scripts.Count() == m_scripts.Count); }
internal EditableScriptsUpdatedEventArgs(IEditableScript updatedScript, EditableScriptUpdatedEventArgs args) { UpdatedScript = updatedScript; UpdatedScriptEventArgs = args; }