2017-02-05 6 views
0

私は奇妙なエラーがあります。私は.Net 4.6プロジェクトでUdpBindingをプログラムで使用したいと思っています。私はApp.ConfigとWcfでそれを追加することもできます。ConfigurationはUdpBindingを作成することも可能です。しかし、コードでUdpBindingを使用しようとすると、うまくいきません。 System.ServiceModelは、単にUdpBindingの定義を提供しません。.Net 4.6でUdpBindingが見つかりません。

using System; 
using System.ServiceModel; 

namespace WcfServiceLibraryTest 
{ 
    public class ServiceTest : IServiceTest 
    { 
     private UdpBinding _binding; //throw: CS0246 WCF C# The type or namespace name could not be found (are you missing a using directive or an assembly reference?) 
    } 
} 

実際に必要なものはすべて参照されます。

お返事ありがとうございます。

答えて

1

解決策が見つかりました。 Add Referenceを介してSystem.ServiceModel.Channelsを追加する必要がありました。

関連する問題