public void Dispose() { if (wasDisposed || Kernel.applicationQuitting) { return; } wasDisposed = true; OnDispose(); //Tell subscribers that controller is disposing OnDisposing.Execute(); OnDisposing.Dispose(); OnDisposing = null; Disposables.Dispose(); controllerEventsSubject.Dispose(); controllerEventsSubject = null; viewEventsSubject.Dispose(); viewEventsSubject = null; Model = null; Container = null; _eventService = null; _dManager = null; ModelProperty.Dispose(); ModelProperty = null; }
public void Dispose() { if (wasDisposed || Kernel.applicationQuitting || this == null) { return; } wasDisposed = true; Disposables.Dispose(); OnDispose(); OnDisposing.Execute(); OnDisposing.Dispose(); OnDisposing = null; //If an error is thrown here, you are trying to dispose a model that was not bound. This should never happen/you should always bind your models and this comment is just here so you know whats wrong :) //_dManager.Remove(this); //If an error is thrown here, you are trying to dispose a model that was not bound. This should never happen/you should always bind your models and this comment is just here so you know whats wrong :) try { _dManager.Remove(this); } catch (Exception e) { if (!skipWarning) // sry, but I have some cases(in my NPC-Nodes) where I have a Model but unbound. I shouldn't have used MVC-Model in the first place.... { UnityEngine.Debug.LogError("Tried to dispose unbound MVC-Model:" + GetType().ToString()); UnityEngine.Debug.LogException(e); } } }
public void Dispose() { if (DisposalInterlock.Enter()) { OnDisposing?.Invoke(); DisposeManaged(); } }
protected virtual void CallDisposeMethods(bool Disposing) { if (Disposing) { OnDisposing?.Invoke(); DisposeManaged(); } }
public void Dispose() { if (!disposed) { OnDisposing?.Invoke(this, new EventArgs()); disposed = true; } }
/// <summary> /// 释放资源 /// </summary> public void Dispose() { OnDisposing?.Invoke(); Close(); timer?.Dispose(); nodeWatchers?.Clear(); are?.Dispose(); GC.Collect(); }
public void Dispose() { if (Stream != null) { Stream.Close(); Stream = null; OnDisposing?.Invoke(); } }
public void Dispose() { if (InnerRequest != null) { OnDisposing?.Invoke(); InnerRequest.OnFinished -= OnHttpResponse; InnerRequest.Response?.Dispose(); InnerRequest = null; } }
/// <summary> /// Releases unmanaged and - optionally - managed resources. /// </summary> public override void Dispose() { try { OnDisposing?.Invoke(this, new OnDisposingEventArgs(this)); } finally { base.Dispose(); Container.Dispose(); if (OnDisposing != null) { OnDisposing -= OnDisposing; } } }
public void Dispose() { if (wasDisposed || Kernel.applicationQuitting || this == null) { return; } wasDisposed = true; Disposables.Dispose(); DisposablesProperty.Dispose(); DisposablesProperty = null; OnDispose(); OnDisposing.Execute(); OnDisposing.Dispose(); OnDisposing = null; OnAfterBind.Dispose(); OnAfterBind = null; _dManager.Remove(this); }
protected override void Dispose(bool disposing) { OnDisposing?.Invoke(this); base.Dispose(disposing); ServiceProvider.TryDispose(); }
/// <summary> /// Disposes the list and, perhaps, compacts the underlying list. /// </summary> public void Dispose() { OnDisposing?.Invoke(startIncl, endExcl); }
public override void Dispose() { OnDisposing?.Invoke(); }