This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using System.Collections.Generic; | |
| using System.Collections.ObjectModel; | |
| using System.Diagnostics; | |
| using System.Net.Sockets; | |
| namespace ConsolePortScanner | |
| { | |
| class MainClass |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Threading.Tasks; | |
| using NUnit.Framework; | |
| namespace Frank.AsyncVoid.Trials | |
| { | |
| [Explicit] | |
| public class AsyncAwaitEventHandlerTests | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using NUnit.Framework; | |
| namespace Frank.AsyncVoid.Trials | |
| { | |
| [Explicit] | |
| public class AsyncVoidEventHandlerTests | |
| { | |
| private static readonly Random Random = new Random(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Threading.Tasks; | |
| using Microsoft.Practices.Prism.Commands; | |
| namespace Klingelnberg.MachineBase.Presentation.Core.Controls | |
| { | |
| /// <summary> | |
| /// Ermöglicht die asynchrone Ausführung von UI-Triggern, die sich selbst während der Ausführung sperren | |
| /// </summary> | |
| public interface IAsyncCommand : IRaiseCanExecuteChanged | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading.Tasks; | |
| using System.Windows.Input; | |
| using Microsoft.Practices.Prism.Commands; | |
| namespace Klingelnberg.MachineBase.Presentation.Core.Controls | |
| { | |
| /// <summary> | |
| /// Ermöglicht die asynchrone Ausführung von UI-Triggern, die sich selbst während der Ausführung sperren | |
| /// </summary> |