Microsoft.Ccr.Core.DispatcherTest.FaultyDispatcherQueue.TryDequeue C# (CSharp) Method

TryDequeue() public method

public TryDequeue ( ITask &task ) : bool
task ITask
return bool
            public override bool TryDequeue(out ITask task)
            {
                task = null;
                throw new Exception ();
                return false;
            }
DispatcherTest.FaultyDispatcherQueue