示例#1
0
        protected virtual void Dispose(bool disposing) {
            if (!_disposed) {

                if (disposing) {
                    
                }

                Settings = null;
                Blueprint = null;
                LifetimeScope = null;
                Shell = null;

                _disposed = true;
            }
        }
示例#2
0
        protected virtual void Dispose(bool disposing) {
            if (!_disposed) {

                if (disposing) {
                    LifetimeScope.Dispose();
                }

                Settings = null;
                Descriptor = null;
                Blueprint = null;
                Shell = null;

                _disposed = true;
            }
        }
示例#3
0
        protected virtual void Dispose(bool disposing)
        {
            if (!_disposed)
            {
                if (disposing)
                {
                }

                Settings      = null;
                Blueprint     = null;
                LifetimeScope = null;
                Shell         = null;

                _disposed = true;
            }
        }
示例#4
0
        protected virtual void Dispose(bool disposing)
        {
            if (!_disposed)
            {
                if (disposing)
                {
                    LifetimeScope.Dispose();
                }

                Settings   = null;
                Descriptor = null;
                Blueprint  = null;
                Shell      = null;

                _disposed = true;
            }
        }