Esempio n. 1
0
 /// <summary>
 ///   Disposes the object, releasing all managed and unmanaged resources.
 /// </summary>
 /// <param name="disposing">If true, indicates that the object is disposed; otherwise, the object is finalized.</param>
 protected override void OnDisposing(bool disposing)
 {
     if (disposing)
     {
         _transitions.SafeDispose();
         TemporaryStateStorage.SafeDispose();
     }
 }
Esempio n. 2
0
        /// <summary>
        ///   Disposes the object, releasing all managed and unmanaged resources.
        /// </summary>
        /// <param name="disposing">If true, indicates that the object is disposed; otherwise, the object is finalized.</param>
        protected override void OnDisposing(bool disposing)
        {
            if (!disposing)
            {
                return;
            }

            ChoiceResolver.SafeDispose();
            TemporaryStateStorage.SafeDispose();
            RuntimeModel.SafeDispose();
        }