WCF名前付きパイプの最小限の例
WCF名前付きパイプの最小限の例を探しています(名前付きパイプを介して通信できるサーバーとクライアントの2つの最小限のアプリケーションが必要です)。 Microsoftには、HTTPを介してWCFを説明する華麗な記事Getting Started Tutorialがあり、WCFと名前付きパイプについて類似したものを探しています。 私はインターネットでいくつかの投稿を見つけましたが、それらは少し「高度」です。最低限必要な機能だけが必要なので、コードを追加してアプリケーションを動作させることができます。 名前付きパイプを使用するように置き換えるにはどうすればよいですか? <endpoint address="http://localhost:8000/ServiceModelSamples/Service/CalculatorService" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ICalculator" contract="ICalculator" name="WSHttpBinding_ICalculator"> <identity> <userPrincipalName value="OlegPc\Oleg" /> </identity> </endpoint> 名前付きパイプを使用するように置き換えるにはどうすればよいですか? // Step 1 of the address configuration procedure: Create a URI to serve as the base address. Uri baseAddress = new Uri("http://localhost:8000/ServiceModelSamples/Service"); // Step 2 of the hosting procedure: Create ServiceHost …