Appccelerate.ScopingEventBroker.Internals.EventScope.Release C# (CSharp) Method

Release() public method

public Release ( ) : void
return void
        public void Release()
        {
            foreach (Action callback in new Collection<Action>(this.callbacks))
            {
                callback();
            }
        }